-
Notifications
You must be signed in to change notification settings - Fork 14
/
ExportPage.xaml
83 lines (73 loc) · 3.52 KB
/
ExportPage.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<Page
x:Class="VBA10.ExportPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:VBA10"
xmlns:ctl="using:VBA10.Controls"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
d:DesignWidth="700"
Loaded="Page_Loaded">
<Grid x:Name="LayoutRoot" Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<Grid x:Name="titleBar"
Height="48"
Background="{ThemeResource SystemControlBackgroundChromeMediumBrush}">
<TextBlock x:Name="title"
Style="{StaticResource PageTitleTextBlockStyle}"
Text="**EXPORT"
x:Uid="EXPORT"/>
</Grid>
<ScrollViewer HorizontalScrollBarVisibility="Disabled"
VerticalScrollBarVisibility="Auto"
Grid.Row="1">
<RelativePanel>
<StackPanel MaxWidth="500"
Margin="12,0">
<TextBlock Text="**Local storage"
VerticalAlignment="Center"
Style="{ThemeResource TitleTextBlockStyle}"
Margin="0,8,0,0"
x:Uid="LocalStorage"
/>
<TextBlock TextWrapping="Wrap"
Text="**If you import the rom using ..."
Margin=" 0, 4, 0, 4"
x:Uid="ExportLocalInstruction"/>
<TextBlock Text="OneDrive"
VerticalAlignment="Center"
Style="{ThemeResource TitleTextBlockStyle}"
Margin="0,8,0,0"
/>
<TextBlock TextWrapping="Wrap"
Text="**If for any reason ..."
Margin=" 0, 4, 0, 4"
x:Uid="ExportOneDriveInstruction"/>
<StackPanel Orientation="Horizontal"
Margin="0,4,0,12">
<Button x:Name="SignInbtn" Content="**Sign in"
Click="SignInbtn_Click"
Width="120"
Margin =" 0, 0, 8, 0"
x:Uid="SignInBtn"/>
<Button x:Name="exportOneDrivebtn" Content="**Export"
Click="exportOneDrivebtn_Click"
Width="120"
IsEnabled="False"
Margin =" 0, 0, 0, 0"
x:Uid="ExportBtn"/>
<!--<Button x:Name="importOneDriveSavebtn" Content="Import Save"
Width="120"
Margin ="0"
Click="importSavbtn_Click"/>-->
</StackPanel>
</StackPanel>
</RelativePanel>
</ScrollViewer>
</Grid>
</Page>