mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-05 02:36:19 +02:00
40 lines
2.0 KiB
XML
40 lines
2.0 KiB
XML
<Page
|
|
x:Class="Microsoft.PowerToys.Settings.UI.OOBE.Views.OobeRegistryPreview"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:custom="using:Microsoft.PowerToys.Settings.UI.Controls"
|
|
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"
|
|
xmlns:toolkitcontrols="using:CommunityToolkit.WinUI.UI.Controls"
|
|
mc:Ignorable="d">
|
|
<custom:OOBEPageControl x:Uid="Oobe_RegistryPreview" HeroImage="ms-appx:///Assets/Settings/Modules/OOBE/RegistryPreview.png">
|
|
|
|
<custom:OOBEPageControl.PageContent>
|
|
<StackPanel Orientation="Vertical">
|
|
|
|
<TextBlock x:Uid="Oobe_HowToUse" Style="{ThemeResource OobeSubtitleStyle}" />
|
|
|
|
<toolkitcontrols:MarkdownTextBlock x:Uid="Oobe_RegistryPreview_HowToUse" Background="Transparent" />
|
|
|
|
<TextBlock x:Uid="Oobe_TipsAndTricks" Style="{ThemeResource OobeSubtitleStyle}" />
|
|
|
|
<toolkitcontrols:MarkdownTextBlock x:Uid="Oobe_RegistryPreview_TipsAndTricks" Background="Transparent" />
|
|
|
|
<StackPanel
|
|
Margin="0,24,0,0"
|
|
Orientation="Horizontal"
|
|
Spacing="12">
|
|
<Button
|
|
x:Uid="Launch_RegistryPreview"
|
|
Click="Launch_RegistryPreview_Click"
|
|
Style="{StaticResource AccentButtonStyle}" />
|
|
<Button x:Uid="OOBE_Settings" Click="SettingsLaunchButton_Click" />
|
|
<HyperlinkButton NavigateUri="https://aka.ms/PowerToysOverview_RegistryPreview" Style="{StaticResource TextButtonStyle}">
|
|
<TextBlock x:Uid="LearnMore_RegistryPreview" TextWrapping="Wrap" />
|
|
</HyperlinkButton>
|
|
</StackPanel>
|
|
</StackPanel>
|
|
</custom:OOBEPageControl.PageContent>
|
|
</custom:OOBEPageControl>
|
|
</Page> |