2022-08-27 02:17:20 +03:00
|
|
|
<Page
|
|
|
|
|
x:Class="Microsoft.PowerToys.Settings.UI.OOBE.Views.OobeMeasureTool"
|
|
|
|
|
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"
|
2022-08-27 02:17:20 +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"
|
2022-08-27 02:17:20 +03:00
|
|
|
mc:Ignorable="d">
|
|
|
|
|
|
2024-01-12 18:01:40 +01:00
|
|
|
<controls:OOBEPageControl x:Uid="Oobe_MeasureTool" HeroImage="ms-appx:///Assets/Settings/Modules/OOBE/ScreenRuler.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}" />
|
2022-08-27 02:17:20 +03:00
|
|
|
|
2026-02-12 16:45:44 +01:00
|
|
|
<ptcontrols:ShortcutWithTextLabelControl x:Name="HotkeyActivation" x:Uid="Oobe_MeasureTool_Activation" />
|
2022-08-27 02:17:20 +03:00
|
|
|
|
2025-09-26 13:29:30 +02:00
|
|
|
<tkcontrols:MarkdownTextBlock x:Uid="Oobe_MeasureTool_HowToLaunch" />
|
2022-08-27 02:17:20 +03:00
|
|
|
|
2024-01-03 14:42:12 +01:00
|
|
|
<StackPanel Orientation="Horizontal" Spacing="8">
|
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_ScreenRuler" Style="{StaticResource TextButtonStyle}">
|
|
|
|
|
<TextBlock x:Uid="LearnMore_MeasureTool" TextWrapping="Wrap" />
|
2022-08-27 02:17:20 +03:00
|
|
|
</HyperlinkButton>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
</StackPanel>
|
2024-01-12 18:01:40 +01:00
|
|
|
</controls:OOBEPageControl.PageContent>
|
|
|
|
|
</controls:OOBEPageControl>
|
|
|
|
|
</Page>
|