-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGuide.xaml
66 lines (60 loc) · 2.88 KB
/
Guide.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<phone:PhoneApplicationPage
x:Class="Xupt_lib.Guide"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"
xmlns:controls="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone.Controls"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d" d:DesignWidth="480" d:DesignHeight="768"
FontFamily="{StaticResource PhoneFontFamilyNormal}"
FontSize="{StaticResource PhoneFontSizeNormal}"
Foreground="{StaticResource PhoneForegroundBrush}"
SupportedOrientations="Portrait" Orientation="Portrait"
shell:SystemTray.IsVisible="false" Loaded="PhoneApplicationPage_Loaded_1">
<!--LayoutRoot 是包含所有页面内容的根网格-->
<Grid x:Name="LayoutRoot" Background="#FF0077E6">
<!--枢轴控件-->
<controls:Pivot>
<!--枢轴项一-->
<controls:PivotItem Height="800" Margin="0,-10,0,0">
<Grid>
<Grid.Background>
<ImageBrush Stretch="Fill" ImageSource="/Guide/p1.png"/>
</Grid.Background>
</Grid>
</controls:PivotItem>
<!--枢轴项二-->
<controls:PivotItem Height="800" Margin="0,-10,0,0">
<Grid>
<Grid.Background>
<ImageBrush Stretch="Fill" ImageSource="/Guide/p2.png"/>
</Grid.Background>
</Grid>
</controls:PivotItem>
<controls:PivotItem Height="800" Margin="0,-10,0,0">
<Grid>
<Grid.Background>
<ImageBrush Stretch="Fill" ImageSource="/Guide/p3.png"/>
</Grid.Background>
</Grid>
</controls:PivotItem>
<controls:PivotItem Height="800" Margin="0,-10,0,0">
<Grid>
<Grid.Background>
<ImageBrush Stretch="Fill" ImageSource="/Guide/p4.png"/>
</Grid.Background>
</Grid>
</controls:PivotItem>
<controls:PivotItem Height="800" Margin="0,-10,0,0">
<Grid>
<Grid.Background>
<ImageBrush Stretch="Fill" ImageSource="/Guide/p5.png"/>
</Grid.Background>
<Button x:Name="Finish" Content="立即使用" HorizontalAlignment="Center" VerticalAlignment="Bottom" Margin="0,0,0,85" Width="320" Click="Finish_Click_1"/>
</Grid>
</controls:PivotItem>
</controls:Pivot>
</Grid>
</phone:PhoneApplicationPage>