2021-03-03 01:56:37 +08:00
|
|
|
<Page x:Class="Microsoft.PowerToys.Settings.UI.OOBE.Views.OobePowerRename"
|
|
|
|
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-04-05 16:52:44 +08:00
|
|
|
xmlns:controls="using:Microsoft.PowerToys.Settings.UI.Controls"
|
2021-09-07 02:21:18 +08:00
|
|
|
xmlns:toolkitcontrols="using:Microsoft.Toolkit.Uwp.UI.Controls"
|
2021-08-24 01:48:52 +08:00
|
|
|
mc:Ignorable="d">
|
|
|
|
<controls:OOBEPageControl ModuleTitle="{x:Bind ViewModel.ModuleName}"
|
|
|
|
ModuleImageSource="{x:Bind ViewModel.PreviewImageSource}"
|
|
|
|
ModuleDescription="{x:Bind ViewModel.Description}">
|
|
|
|
<controls:OOBEPageControl.ModuleContent>
|
|
|
|
<StackPanel Orientation="Vertical">
|
2021-03-03 01:56:37 +08:00
|
|
|
|
|
|
|
<TextBlock x:Uid="Oobe_HowToUse"
|
2021-08-24 01:48:52 +08:00
|
|
|
Style="{ThemeResource OobeSubtitleStyle}" />
|
2021-03-03 01:56:37 +08:00
|
|
|
|
2021-09-07 02:21:18 +08:00
|
|
|
<toolkitcontrols:MarkdownTextBlock Background="Transparent" x:Uid="Oobe_PowerRename_HowToUse" />
|
2021-03-03 01:56:37 +08:00
|
|
|
|
|
|
|
<TextBlock x:Uid="Oobe_TipsAndTricks"
|
2021-08-24 01:48:52 +08:00
|
|
|
Style="{ThemeResource OobeSubtitleStyle}"/>
|
2021-03-03 01:56:37 +08:00
|
|
|
|
2021-09-07 02:21:18 +08:00
|
|
|
<toolkitcontrols:MarkdownTextBlock Background="Transparent" x:Uid="Oobe_PowerRename_TipsAndTricks" />
|
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"/>
|
2021-09-19 22:22:39 +08:00
|
|
|
<HyperlinkButton NavigateUri="{x:Bind ViewModel.Link}" Style="{StaticResource TextButtonStyle}">
|
2021-08-24 01:48:52 +08:00
|
|
|
<TextBlock x:Uid="LearnMore_PowerRename"
|
|
|
|
TextWrapping="Wrap" />
|
|
|
|
</HyperlinkButton>
|
2021-03-03 01:56:37 +08:00
|
|
|
</StackPanel>
|
|
|
|
</StackPanel>
|
2021-08-24 01:48:52 +08:00
|
|
|
</controls:OOBEPageControl.ModuleContent>
|
|
|
|
</controls:OOBEPageControl>
|
2021-03-03 01:56:37 +08:00
|
|
|
</Page>
|