2021-10-22 13:30:18 +01:00
|
|
|
<Page
|
|
|
|
|
x:Class="Microsoft.PowerToys.Settings.UI.OOBE.Views.OobeMouseUtils"
|
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
2022-11-23 19:57:09 +01:00
|
|
|
xmlns:controls="using:Microsoft.PowerToys.Settings.UI.Controls"
|
2021-10-22 13:30:18 +01:00
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
2022-04-19 22:00:28 +02:00
|
|
|
xmlns:toolkitcontrols="using:CommunityToolkit.WinUI.UI.Controls"
|
2021-10-22 13:30:18 +01:00
|
|
|
mc:Ignorable="d">
|
|
|
|
|
|
2022-11-23 19:57:09 +01:00
|
|
|
<controls:OOBEPageControl
|
|
|
|
|
x:Uid="Oobe_MouseUtils"
|
|
|
|
|
HeroImage="ms-appx:///Assets/Modules/OOBE/MouseUtils.gif">
|
2021-10-22 13:30:18 +01:00
|
|
|
|
2022-03-08 16:27:17 +01:00
|
|
|
<controls:OOBEPageControl.PageContent>
|
2021-10-22 13:30:18 +01:00
|
|
|
<StackPanel Orientation="Vertical">
|
2022-11-23 19:57:09 +01:00
|
|
|
<TextBlock
|
|
|
|
|
x:Uid="Oobe_MouseUtils_FindMyMouse"
|
|
|
|
|
Style="{ThemeResource OobeSubtitleStyle}" />
|
|
|
|
|
<toolkitcontrols:MarkdownTextBlock
|
|
|
|
|
x:Uid="Oobe_MouseUtils_FindMyMouse_Description"
|
|
|
|
|
Background="Transparent" />
|
2021-10-22 13:30:18 +01:00
|
|
|
|
2022-11-23 19:57:09 +01:00
|
|
|
<TextBlock
|
|
|
|
|
x:Uid="Oobe_MouseUtils_MouseHighlighter"
|
|
|
|
|
Style="{ThemeResource OobeSubtitleStyle}" />
|
|
|
|
|
<toolkitcontrols:MarkdownTextBlock
|
|
|
|
|
x:Uid="Oobe_MouseUtils_MouseHighlighter_Description"
|
|
|
|
|
Background="Transparent" />
|
2021-11-22 13:31:31 +00:00
|
|
|
|
2022-11-23 19:57:09 +01:00
|
|
|
<TextBlock
|
|
|
|
|
x:Uid="Oobe_MouseUtils_MousePointerCrosshairs"
|
|
|
|
|
Style="{ThemeResource OobeSubtitleStyle}" />
|
|
|
|
|
<toolkitcontrols:MarkdownTextBlock
|
|
|
|
|
x:Uid="Oobe_MouseUtils_MousePointerCrosshairs_Description"
|
|
|
|
|
Background="Transparent" />
|
2022-01-24 13:29:16 +00:00
|
|
|
|
2022-11-23 19:57:09 +01: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_MouseUtilities"
|
|
|
|
|
Style="{StaticResource TextButtonStyle}">
|
|
|
|
|
<TextBlock
|
|
|
|
|
x:Uid="LearnMore_MouseUtils"
|
|
|
|
|
TextWrapping="Wrap" />
|
2021-10-22 13:30:18 +01:00
|
|
|
</HyperlinkButton>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
|
|
|
|
|
</StackPanel>
|
2022-03-08 16:27:17 +01:00
|
|
|
</controls:OOBEPageControl.PageContent>
|
2021-10-22 13:30:18 +01:00
|
|
|
</controls:OOBEPageControl>
|
|
|
|
|
</Page>
|