mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-24 00:48:00 +08:00
9cf39654d9
* Move content to dedicated XAML * Select modules enum * Remove redundant code, UI fixes * Markdown rendering tweaks * Address feedback
30 lines
1.5 KiB
XML
30 lines
1.5 KiB
XML
<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"
|
|
xmlns:controls="using:Microsoft.PowerToys.Settings.UI.Controls"
|
|
mc:Ignorable="d">
|
|
|
|
<controls:OOBEPageControl x:Uid="Oobe_Overview"
|
|
HeroImage="ms-appx:///Assets/Modules/OOBE/OOBEPTHero.png">
|
|
|
|
<controls:OOBEPageControl.PageContent>
|
|
<StackPanel Orientation="Vertical">
|
|
<TextBlock x:Uid="Oobe_HowToUse"
|
|
Style="{ThemeResource OobeSubtitleStyle}" />
|
|
|
|
<HyperlinkButton NavigateUri="https://aka.ms/PowerToysOverview" Style="{StaticResource TextButtonStyle}">
|
|
<TextBlock x:Uid="Oobe_Overview_DescriptionLinkText"
|
|
TextWrapping="Wrap" />
|
|
</HyperlinkButton>
|
|
|
|
<StackPanel Orientation="Horizontal" Spacing="12" Margin="0,24,0,0">
|
|
<Button x:Uid="OOBE_Settings"
|
|
Click="SettingsLaunchButton_Click"/>
|
|
</StackPanel>
|
|
</StackPanel>
|
|
</controls:OOBEPageControl.PageContent>
|
|
</controls:OOBEPageControl>
|
|
</Page> |