2021-03-02 20:56:37 +03:00
|
|
|
<Page
|
|
|
|
|
x:Class="Microsoft.PowerToys.Settings.UI.OOBE.Views.OobeShortcutGuide"
|
|
|
|
|
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-09-06 20:21:18 +02:00
|
|
|
xmlns:controls="using:Microsoft.PowerToys.Settings.UI.Controls"
|
|
|
|
|
xmlns:toolkitcontrols="using:Microsoft.Toolkit.Uwp.UI.Controls"
|
|
|
|
|
mc:Ignorable="d">
|
2021-08-23 19:48:52 +02:00
|
|
|
<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-02 20:56:37 +03:00
|
|
|
|
|
|
|
|
<TextBlock x:Uid="Oobe_HowToLaunch"
|
2021-08-23 19:48:52 +02:00
|
|
|
Style="{ThemeResource OobeSubtitleStyle}" />
|
2021-03-02 20:56:37 +03:00
|
|
|
|
2021-09-06 20:21:18 +02:00
|
|
|
<controls:ShortcutWithTextLabelControl x:Name="HotkeyControl" x:Uid="Oobe_ShortcutGuide_HowToLaunch" />
|
2021-08-23 19:48:52 +02:00
|
|
|
<StackPanel Orientation="Horizontal" Spacing="12" Margin="0,24,0,0">
|
|
|
|
|
<Button x:Uid="Launch_ShortcutGuide" Style="{StaticResource AccentButtonStyle}" Click="Start_ShortcutGuide_Click"/>
|
|
|
|
|
<Button x:Uid="OOBE_Settings"
|
|
|
|
|
Click="SettingsLaunchButton_Click"/>
|
2021-09-19 16:22:39 +02:00
|
|
|
<HyperlinkButton NavigateUri="{x:Bind ViewModel.Link}" Style="{StaticResource TextButtonStyle}">
|
2021-08-23 19:48:52 +02:00
|
|
|
<TextBlock x:Uid="LearnMore_ShortcutGuide"
|
|
|
|
|
TextWrapping="Wrap" />
|
|
|
|
|
</HyperlinkButton>
|
2021-03-02 20:56:37 +03:00
|
|
|
</StackPanel>
|
|
|
|
|
</StackPanel>
|
2021-08-23 19:48:52 +02:00
|
|
|
</controls:OOBEPageControl.ModuleContent>
|
|
|
|
|
</controls:OOBEPageControl>
|
|
|
|
|
</Page>
|