2022-11-23 19:57:09 +01: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"
|
2023-09-14 18:41:31 +02:00
|
|
|
xmlns:custom="using:Microsoft.PowerToys.Settings.UI.Controls"
|
2022-11-23 19:57:09 +01:00
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
|
|
xmlns:local="using:Microsoft.PowerToys.Settings.UI.OOBE.Views"
|
|
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
|
|
|
mc:Ignorable="d">
|
2021-03-02 20:56:37 +03:00
|
|
|
|
2023-10-24 12:25:55 +02:00
|
|
|
<custom:OOBEPageControl x:Uid="Oobe_Overview" HeroImage="ms-appx:///Assets/Settings/Modules/OOBE/OOBEPTHero.png">
|
2021-03-02 20:56:37 +03:00
|
|
|
|
2023-09-14 18:41:31 +02:00
|
|
|
<custom:OOBEPageControl.PageContent>
|
2021-08-23 19:48:52 +02:00
|
|
|
<StackPanel Orientation="Vertical">
|
2023-10-24 12:25:55 +02:00
|
|
|
<TextBlock x:Uid="Oobe_HowToUse" Style="{ThemeResource OobeSubtitleStyle}" />
|
2021-03-02 20:56:37 +03:00
|
|
|
|
2023-10-24 12:25:55 +02:00
|
|
|
<HyperlinkButton NavigateUri="https://aka.ms/PowerToysOverview" Style="{StaticResource TextButtonStyle}">
|
|
|
|
|
<TextBlock x:Uid="Oobe_Overview_DescriptionLinkText" TextWrapping="Wrap" />
|
2021-08-23 19:48:52 +02:00
|
|
|
</HyperlinkButton>
|
2021-03-02 20:56:37 +03:00
|
|
|
|
2022-11-23 19:57:09 +01:00
|
|
|
<StackPanel
|
|
|
|
|
Margin="0,24,0,0"
|
|
|
|
|
Orientation="Horizontal"
|
|
|
|
|
Spacing="12">
|
2023-10-24 12:25:55 +02:00
|
|
|
<Button x:Uid="OOBE_Settings" Click="SettingsLaunchButton_Click" />
|
2021-08-23 19:48:52 +02:00
|
|
|
</StackPanel>
|
2021-03-02 20:56:37 +03:00
|
|
|
</StackPanel>
|
2023-09-14 18:41:31 +02:00
|
|
|
</custom:OOBEPageControl.PageContent>
|
|
|
|
|
</custom:OOBEPageControl>
|
2021-03-02 20:56:37 +03:00
|
|
|
</Page>
|