mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-08 20:27:36 +02:00
33 lines
1.7 KiB
Plaintext
33 lines
1.7 KiB
Plaintext
|
|
<Page
|
||
|
|
x:Class="Microsoft.PowerToys.Settings.UI.Views.MouseUtilsPage"
|
||
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||
|
|
mc:Ignorable="d"
|
||
|
|
xmlns:muxc="using:Microsoft.UI.Xaml.Controls"
|
||
|
|
xmlns:controls="using:Microsoft.PowerToys.Settings.UI.Controls"
|
||
|
|
AutomationProperties.LandmarkType="Main">
|
||
|
|
|
||
|
|
<controls:SettingsPageControl x:Uid="MouseUtils"
|
||
|
|
ModuleImageSource="ms-appx:///Assets/Modules/MouseUtils.png">
|
||
|
|
<controls:SettingsPageControl.ModuleContent>
|
||
|
|
<StackPanel Orientation="Vertical">
|
||
|
|
|
||
|
|
<controls:Setting x:Uid="MouseUtils_Enable_FindMyMouse" Icon="">
|
||
|
|
<controls:Setting.ActionContent>
|
||
|
|
<ToggleSwitch IsOn="{x:Bind ViewModel.IsFindMyMouseEnabled, Mode=TwoWay}" HorizontalAlignment="Right"/>
|
||
|
|
</controls:Setting.ActionContent>
|
||
|
|
</controls:Setting>
|
||
|
|
|
||
|
|
</StackPanel>
|
||
|
|
</controls:SettingsPageControl.ModuleContent>
|
||
|
|
<controls:SettingsPageControl.PrimaryLinks>
|
||
|
|
<controls:PageLink x:Uid="LearnMore_MouseUtils" Link="https://aka.ms/PowerToysOverview_MouseUtilities"/>
|
||
|
|
</controls:SettingsPageControl.PrimaryLinks>
|
||
|
|
<controls:SettingsPageControl.SecondaryLinks>
|
||
|
|
<controls:PageLink Text="Raymond Chen's Find My Mouse" Link="https://devblogs.microsoft.com/oldnewthing/author/oldnewthing"/>
|
||
|
|
</controls:SettingsPageControl.SecondaryLinks>
|
||
|
|
</controls:SettingsPageControl>
|
||
|
|
</Page>
|