2021-03-02 20:56:37 +03:00
|
|
|
<Page
|
|
|
|
|
x:Class="Microsoft.PowerToys.Settings.UI.OOBE.Views.OobeRun"
|
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
2024-01-12 18:01:40 +01:00
|
|
|
xmlns:controls="using:Microsoft.PowerToys.Settings.UI.Controls"
|
2021-03-02 20:56:37 +03:00
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
2026-02-12 16:45:44 +01:00
|
|
|
xmlns:ptcontrols="using:Microsoft.PowerToys.Common.UI.Controls"
|
2025-09-26 13:29:30 +02:00
|
|
|
xmlns:tkcontrols="using:CommunityToolkit.WinUI.Controls"
|
2021-09-06 20:21:18 +02:00
|
|
|
mc:Ignorable="d">
|
2021-03-02 20:56:37 +03:00
|
|
|
|
2024-01-12 18:01:40 +01:00
|
|
|
<controls:OOBEPageControl x:Uid="Oobe_Run" HeroImage="ms-appx:///Assets/Settings/Modules/OOBE/Run.gif">
|
|
|
|
|
<controls:OOBEPageControl.PageContent>
|
2024-01-03 14:42:12 +01:00
|
|
|
<StackPanel Orientation="Vertical" Spacing="12">
|
2023-10-24 12:25:55 +02:00
|
|
|
<TextBlock x:Uid="Oobe_HowToLaunch" Style="{ThemeResource OobeSubtitleStyle}" />
|
2021-03-02 20:56:37 +03:00
|
|
|
|
2026-02-12 16:45:44 +01:00
|
|
|
<ptcontrols:ShortcutWithTextLabelControl x:Name="HotkeyControl" x:Uid="Oobe_Run_HowToLaunch" />
|
2021-04-19 12:42:36 +02:00
|
|
|
|
2023-10-24 12:25:55 +02:00
|
|
|
<TextBlock x:Uid="Oobe_TipsAndTricks" Style="{ThemeResource OobeSubtitleStyle}" />
|
2021-03-02 20:56:37 +03:00
|
|
|
|
2025-09-26 13:29:30 +02:00
|
|
|
<tkcontrols:MarkdownTextBlock x:Uid="Oobe_Run_TipsAndTricks" />
|
2021-03-02 20:56:37 +03:00
|
|
|
|
2024-01-03 14:42:12 +01:00
|
|
|
<StackPanel Orientation="Horizontal" Spacing="8">
|
2022-11-23 19:57:09 +01:00
|
|
|
<Button
|
2026-01-30 14:48:09 +08:00
|
|
|
x:Name="LaunchButton"
|
2022-11-23 19:57:09 +01:00
|
|
|
x:Uid="Launch_Run"
|
|
|
|
|
Click="Start_Run_Click"
|
|
|
|
|
Style="{StaticResource AccentButtonStyle}" />
|
2023-10-24 12:25:55 +02:00
|
|
|
<Button x:Uid="OOBE_Settings" Click="SettingsLaunchButton_Click" />
|
2024-01-03 14:42:12 +01:00
|
|
|
|
2023-10-24 12:25:55 +02:00
|
|
|
<HyperlinkButton NavigateUri="https://aka.ms/PowerToysOverview_PowerToysRun" Style="{StaticResource TextButtonStyle}">
|
|
|
|
|
<TextBlock x:Uid="LearnMore_Run" TextWrapping="Wrap" />
|
2021-08-23 19:48:52 +02:00
|
|
|
</HyperlinkButton>
|
2021-03-02 20:56:37 +03:00
|
|
|
</StackPanel>
|
|
|
|
|
</StackPanel>
|
2024-01-12 18:01:40 +01:00
|
|
|
</controls:OOBEPageControl.PageContent>
|
|
|
|
|
</controls:OOBEPageControl>
|
|
|
|
|
</Page>
|