2022-11-24 02:57:09 +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:controls="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">
|
|
|
|
<controls:OOBEPageControl
|
|
|
|
x:Uid="Oobe_PowerRename"
|
|
|
|
HeroImage="ms-appx:///Assets/Modules/OOBE/PowerRename.gif">
|
|
|
|
|
2022-03-08 23:27:17 +08:00
|
|
|
<controls:OOBEPageControl.PageContent>
|
2021-08-24 01:48:52 +08:00
|
|
|
<StackPanel Orientation="Vertical">
|
2021-03-03 01:56:37 +08:00
|
|
|
|
2022-11-24 02:57:09 +08:00
|
|
|
<TextBlock
|
|
|
|
x:Uid="Oobe_HowToUse"
|
|
|
|
Style="{ThemeResource OobeSubtitleStyle}" />
|
2021-03-03 01:56:37 +08:00
|
|
|
|
2022-11-24 02:57:09 +08:00
|
|
|
<toolkitcontrols:MarkdownTextBlock
|
|
|
|
x:Uid="Oobe_PowerRename_HowToUse"
|
|
|
|
Background="Transparent" />
|
2021-03-03 01:56:37 +08:00
|
|
|
|
2022-11-24 02:57:09 +08:00
|
|
|
<TextBlock
|
|
|
|
x:Uid="Oobe_TipsAndTricks"
|
|
|
|
Style="{ThemeResource OobeSubtitleStyle}" />
|
2021-03-03 01:56:37 +08:00
|
|
|
|
2022-11-24 02:57:09 +08:00
|
|
|
<toolkitcontrols:MarkdownTextBlock
|
|
|
|
x:Uid="Oobe_PowerRename_TipsAndTricks"
|
|
|
|
Background="Transparent" />
|
2021-03-03 01:56:37 +08:00
|
|
|
|
2022-11-24 02:57:09 +08:00
|
|
|
<StackPanel
|
|
|
|
Margin="0,24,0,0"
|
|
|
|
Orientation="Horizontal"
|
|
|
|
Spacing="12">
|
|
|
|
<Button
|
|
|
|
x:Uid="OOBE_Settings"
|
|
|
|
Click="SettingsLaunchButton_Click" />
|
|
|
|
<HyperlinkButton
|
|
|
|
NavigateUri="https://aka.ms/PowerToysOverview_PowerRename"
|
|
|
|
Style="{StaticResource TextButtonStyle}">
|
|
|
|
<TextBlock
|
|
|
|
x:Uid="LearnMore_PowerRename"
|
|
|
|
TextWrapping="Wrap" />
|
2021-08-24 01:48:52 +08:00
|
|
|
</HyperlinkButton>
|
2021-03-03 01:56:37 +08:00
|
|
|
</StackPanel>
|
|
|
|
</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>
|