2021-03-03 01:56:37 +08:00
|
|
|
<Page x:Class="Microsoft.PowerToys.Settings.UI.OOBE.Views.OobeOverview"
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
|
xmlns:local="using:Microsoft.PowerToys.Settings.UI.OOBE.Views"
|
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
|
|
mc:Ignorable="d"
|
|
|
|
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
|
|
|
|
|
|
|
|
<Grid>
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition Height="280" />
|
|
|
|
<RowDefinition Height="*" />
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
|
|
|
<Image Stretch="UniformToFill"
|
|
|
|
Source="{x:Bind ViewModel.PreviewImageSource}" />
|
|
|
|
|
|
|
|
<ScrollViewer Grid.Row="1"
|
|
|
|
VerticalScrollBarVisibility="Auto">
|
|
|
|
<StackPanel Orientation="Vertical"
|
2021-03-03 08:24:05 +08:00
|
|
|
Margin="{StaticResource OobePageContentMargin}"
|
2021-03-03 01:56:37 +08:00
|
|
|
VerticalAlignment="Top">
|
|
|
|
|
|
|
|
<TextBlock Text="{x:Bind ViewModel.ModuleName}"
|
|
|
|
Style="{StaticResource PageTitleStyle}" />
|
|
|
|
|
|
|
|
<TextBlock Margin="0,4,0,0"
|
|
|
|
TextWrapping="Wrap">
|
|
|
|
<Run x:Uid="Oobe_Overview_Description" />
|
|
|
|
<Hyperlink NavigateUri="{x:Bind ViewModel.DescriptionLink}"
|
|
|
|
Foreground="{ThemeResource SystemControlBackgroundAccentBrush}">
|
|
|
|
<Run x:Uid="Oobe_Overview_DescriptionLinkText" />
|
|
|
|
</Hyperlink>
|
|
|
|
</TextBlock>
|
|
|
|
|
|
|
|
<TextBlock Margin="0,32,0,0"
|
|
|
|
TextWrapping="Wrap">
|
|
|
|
<Run x:Uid="Oobe_Overview_CheckoutLatestVersion" />
|
|
|
|
<Hyperlink NavigateUri="{x:Bind ViewModel.Link}">
|
|
|
|
<Run x:Uid="Oobe_Overview_LatestVersionLink" />
|
|
|
|
</Hyperlink>
|
|
|
|
</TextBlock>
|
|
|
|
|
|
|
|
<Button Click="SettingsLaunchButton_Click"
|
|
|
|
Margin="0,32,0,0">
|
|
|
|
<StackPanel Orientation="Horizontal"
|
|
|
|
Spacing="8">
|
|
|
|
<TextBlock Text=""
|
|
|
|
Margin="0,3,0,0"
|
|
|
|
FontFamily="Segoe MDL2 Assets" />
|
|
|
|
<TextBlock x:Uid="OOBE_Settings" />
|
|
|
|
</StackPanel>
|
|
|
|
</Button>
|
|
|
|
</StackPanel>
|
|
|
|
</ScrollViewer>
|
|
|
|
</Grid>
|
|
|
|
</Page>
|