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"
|
2021-08-24 01:48:52 +08:00
|
|
|
xmlns:controls="using:Microsoft.PowerToys.Settings.UI.Controls"
|
|
|
|
mc:Ignorable="d">
|
2021-03-03 01:56:37 +08:00
|
|
|
|
2022-03-08 23:27:17 +08:00
|
|
|
<controls:OOBEPageControl x:Uid="Oobe_Overview"
|
|
|
|
HeroImage="ms-appx:///Assets/Modules/OOBE/OOBEPTHero.png">
|
2021-03-03 01:56:37 +08:00
|
|
|
|
2022-03-08 23:27:17 +08:00
|
|
|
<controls:OOBEPageControl.PageContent>
|
2021-08-24 01:48:52 +08:00
|
|
|
<StackPanel Orientation="Vertical">
|
2022-03-08 23:27:17 +08:00
|
|
|
<TextBlock x:Uid="Oobe_HowToUse"
|
|
|
|
Style="{ThemeResource OobeSubtitleStyle}" />
|
2021-03-03 01:56:37 +08:00
|
|
|
|
2022-03-08 23:27:17 +08:00
|
|
|
<HyperlinkButton NavigateUri="https://aka.ms/PowerToysOverview" Style="{StaticResource TextButtonStyle}">
|
|
|
|
<TextBlock x:Uid="Oobe_Overview_DescriptionLinkText"
|
2021-08-24 01:48:52 +08:00
|
|
|
TextWrapping="Wrap" />
|
|
|
|
</HyperlinkButton>
|
2021-03-03 01:56:37 +08:00
|
|
|
|
2021-08-24 01:48:52 +08:00
|
|
|
<StackPanel Orientation="Horizontal" Spacing="12" Margin="0,24,0,0">
|
|
|
|
<Button x:Uid="OOBE_Settings"
|
|
|
|
Click="SettingsLaunchButton_Click"/>
|
|
|
|
</StackPanel>
|
2021-03-03 01:56:37 +08:00
|
|
|
</StackPanel>
|
2022-03-08 23:27:17 +08:00
|
|
|
</controls:OOBEPageControl.PageContent>
|
2021-08-24 01:48:52 +08:00
|
|
|
</controls:OOBEPageControl>
|
2021-03-03 01:56:37 +08:00
|
|
|
</Page>
|