mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-24 00:48:00 +08:00
70 lines
2.8 KiB
Plaintext
70 lines
2.8 KiB
Plaintext
|
<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"
|
||
|
mc:Ignorable="d"
|
||
|
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
|
||
|
|
||
|
<Grid>
|
||
|
<Grid.RowDefinitions>
|
||
|
<RowDefinition Height="280" />
|
||
|
<RowDefinition Height="*" />
|
||
|
</Grid.RowDefinitions>
|
||
|
|
||
|
<Image Stretch="UniformToFill"
|
||
|
Source="{x:Bind ViewModel.PreviewImageSource}" />
|
||
|
|
||
|
<ScrollViewer Grid.Row="1"
|
||
|
VerticalScrollBarVisibility="Auto">
|
||
|
<StackPanel Orientation="Vertical"
|
||
|
Margin="32,24,32,24"
|
||
|
VerticalAlignment="Top">
|
||
|
|
||
|
<TextBlock Text="{x:Bind ViewModel.ModuleName}"
|
||
|
Style="{StaticResource PageTitleStyle}" />
|
||
|
|
||
|
<TextBlock Margin="0,4,0,0"
|
||
|
TextWrapping="Wrap"
|
||
|
Text="{x:Bind ViewModel.Description}" />
|
||
|
|
||
|
<HyperlinkButton NavigateUri="{x:Bind ViewModel.Link}"
|
||
|
Margin="0,0,0,4">
|
||
|
<TextBlock>
|
||
|
<Run x:Uid="Oobe_LearnMore" />
|
||
|
<Run Text="{x:Bind ViewModel.ModuleName}" />
|
||
|
</TextBlock>
|
||
|
</HyperlinkButton>
|
||
|
|
||
|
|
||
|
<TextBlock x:Uid="Oobe_HowToUse"
|
||
|
Style="{StaticResource OobeSubtitleStyle}" />
|
||
|
|
||
|
<TextBlock x:Uid="Oobe_PowerRename_HowToUse"
|
||
|
TextWrapping="Wrap" />
|
||
|
|
||
|
<TextBlock x:Uid="Oobe_TipsAndTricks"
|
||
|
Style="{StaticResource OobeSubtitleStyle}" />
|
||
|
|
||
|
<TextBlock x:Uid="Oobe_PowerRename_TipsAndTricks"
|
||
|
TextWrapping="Wrap" />
|
||
|
|
||
|
<StackPanel Orientation="Horizontal"
|
||
|
Spacing="4"
|
||
|
Margin="0,32,0,0">
|
||
|
|
||
|
<Button Click="SettingsLaunchButton_Click">
|
||
|
<StackPanel Orientation="Horizontal"
|
||
|
Spacing="8">
|
||
|
<TextBlock Text=""
|
||
|
Margin="0,3,0,0"
|
||
|
FontFamily="Segoe MDL2 Assets" />
|
||
|
<TextBlock x:Uid="OOBE_Settings" />
|
||
|
</StackPanel>
|
||
|
</Button>
|
||
|
</StackPanel>
|
||
|
</StackPanel>
|
||
|
</ScrollViewer>
|
||
|
</Grid>
|
||
|
</Page>
|