2023-10-24 12:25:55 +02:00
<Page
2020-03-31 14:32:22 +02:00
x:Class="Microsoft.PowerToys.Settings.UI.Views.FancyZonesPage"
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"
2020-03-31 14:32:22 +02:00
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
2024-01-12 18:01:40 +01:00
xmlns:tkcontrols="using:CommunityToolkit.WinUI.Controls"
2023-09-14 18:41:31 +02:00
xmlns:ui="using:CommunityToolkit.WinUI"
2022-11-23 19:57:09 +01:00
AutomationProperties.LandmarkType="Main"
mc:Ignorable="d">
2020-04-16 11:45:27 -07:00
2024-01-12 18:01:40 +01:00
<controls:SettingsPageControl x:Uid="FancyZones" ModuleImageSource="ms-appx:///Assets/Settings/Modules/FancyZones.png">
<controls:SettingsPageControl.ModuleContent>
2023-09-14 18:41:31 +02:00
<StackPanel ChildrenTransitions="{StaticResource SettingsCardsAnimations}" Orientation="Vertical">
2024-01-12 18:01:40 +01:00
<tkcontrols:SettingsCard
2022-11-23 19:57:09 +01:00
x:Uid="FancyZones_EnableToggleControl_HeaderText"
2024-01-26 17:12:33 +01:00
HeaderIcon="{ui:BitmapIcon Source=/Assets/Settings/Icons/FancyZones.png}"
2024-01-03 16:41:26 +01:00
IsEnabled="{x:Bind ViewModel.IsEnabledGpoConfigured, Mode=OneWay, Converter={StaticResource BoolNegationConverter}}">
2023-09-14 18:41:31 +02:00
<ToggleSwitch x:Uid="ToggleSwitch" IsOn="{x:Bind ViewModel.IsEnabled, Mode=TwoWay}" />
2024-01-12 18:01:40 +01:00
</tkcontrols:SettingsCard>
2022-12-05 17:34:16 +00:00
<InfoBar
2024-01-25 14:59:00 +01:00
x:Uid="GPO_SettingIsManaged"
2022-12-05 17:34:16 +00:00
IsClosable="False"
2024-01-03 16:41:26 +01:00
IsOpen="{x:Bind ViewModel.IsEnabledGpoConfigured, Mode=OneWay}"
IsTabStop="{x:Bind ViewModel.IsEnabledGpoConfigured, Mode=OneWay}"
2025-01-19 15:32:46 +01:00
Severity="Informational">
<InfoBar.IconSource>
<FontIconSource FontFamily="{StaticResource SymbolThemeFontFamily}" Glyph="" />
</InfoBar.IconSource>
</InfoBar>
2020-08-18 14:46:32 -07:00
2024-01-12 18:01:40 +01:00
<controls:SettingsGroup x:Uid="FancyZones_Editor_GroupSettings" IsEnabled="{x:Bind ViewModel.IsEnabled, Mode=OneWay}">
<tkcontrols:SettingsCard
2022-11-23 19:57:09 +01:00
x:Uid="FancyZones_LaunchEditorButtonControl"
2024-01-02 15:09:35 +01:00
ActionIcon="{ui:FontIcon Glyph=}"
2022-11-23 19:57:09 +01:00
Command="{x:Bind ViewModel.LaunchEditorEventHandler}"
2023-09-14 18:41:31 +02:00
HeaderIcon="{ui:FontIcon Glyph=}"
2022-11-23 19:57:09 +01:00
IsClickEnabled="True" />
2021-08-23 19:48:52 +02:00
2024-01-12 18:01:40 +01:00
<tkcontrols:SettingsCard x:Uid="Activation_Shortcut" HeaderIcon="{ui:FontIcon Glyph=}">
<controls:ShortcutControl MinWidth="{StaticResource SettingActionControlMinWidth}" HotkeySettings="{x:Bind Path=ViewModel.EditorHotkey, Mode=TwoWay}" />
</tkcontrols:SettingsCard>
2021-08-23 19:48:52 +02:00
2024-01-12 18:01:40 +01:00
<tkcontrols:SettingsCard x:Uid="FancyZones_UseCursorPosEditorStartupScreen" HeaderIcon="{ui:FontIcon Glyph=}">
2024-01-03 16:41:26 +01:00
<ComboBox MinWidth="{StaticResource SettingActionControlMinWidth}" SelectedIndex="{x:Bind ViewModel.UseCursorPosEditorStartupScreen, Mode=TwoWay, Converter={StaticResource BoolToComboBoxIndexConverter}}">
2022-11-23 19:57:09 +01:00
<ComboBoxItem x:Uid="FancyZones_LaunchPositionScreen" />
<ComboBoxItem x:Uid="FancyZones_LaunchPositionMouse" />
</ComboBox>
2024-01-12 18:01:40 +01:00
</tkcontrols:SettingsCard>
</controls:SettingsGroup>
2021-08-23 19:48:52 +02:00
2024-01-12 18:01:40 +01:00
<controls:SettingsGroup
2022-11-23 19:57:09 +01:00
x:Name="ZonesSettingsGroup"
x:Uid="FancyZones_Zones"
2024-01-03 16:41:26 +01:00
IsEnabled="{x:Bind ViewModel.IsEnabled, Mode=OneWay}">
2024-01-12 18:01:40 +01:00
<tkcontrols:SettingsExpander x:Uid="FancyZones_ZoneBehavior_GroupSettings" IsExpanded="True">
<tkcontrols:SettingsExpander.Items>
<tkcontrols:SettingsCard ContentAlignment="Left">
2024-01-03 16:41:26 +01:00
<CheckBox x:Uid="FancyZones_ShiftDragCheckBoxControl_Header" IsChecked="{x:Bind ViewModel.ShiftDrag, Mode=TwoWay}" />
2024-01-12 18:01:40 +01:00
</tkcontrols:SettingsCard>
<tkcontrols:SettingsCard ContentAlignment="Left">
2024-01-03 16:41:26 +01:00
<CheckBox x:Uid="FancyZones_MouseDragCheckBoxControl_Header" IsChecked="{x:Bind ViewModel.MouseSwitch, Mode=TwoWay}" />
2024-01-12 18:01:40 +01:00
</tkcontrols:SettingsCard>
<tkcontrols:SettingsCard ContentAlignment="Left">
2024-01-03 16:41:26 +01:00
<CheckBox x:Uid="FancyZones_MouseMiddleClickSpanningMultipleZonesCheckBoxControl_Header" IsChecked="{x:Bind ViewModel.MouseMiddleClickSpanningMultipleZones, Mode=TwoWay}" />
2024-01-12 18:01:40 +01:00
</tkcontrols:SettingsCard>
<tkcontrols:SettingsCard ContentAlignment="Left">
2024-01-03 16:41:26 +01:00
<CheckBox x:Uid="FancyZones_ShowZonesOnAllMonitorsCheckBoxControl" IsChecked="{x:Bind ViewModel.ShowOnAllMonitors, Mode=TwoWay}" />
2024-01-12 18:01:40 +01:00
</tkcontrols:SettingsCard>
<tkcontrols:SettingsCard ContentAlignment="Left">
<controls:CheckBoxWithDescriptionControl x:Uid="FancyZones_SpanZonesAcrossMonitors" IsChecked="{x:Bind ViewModel.SpanZonesAcrossMonitors, Mode=TwoWay}" />
</tkcontrols:SettingsCard>
<tkcontrols:SettingsCard x:Uid="FancyZones_OverlappingZones">
2023-09-14 18:41:31 +02:00
<ComboBox MinWidth="{StaticResource SettingActionControlMinWidth}" SelectedIndex="{x:Bind Path=ViewModel.OverlappingZonesAlgorithmIndex, Mode=TwoWay}">
2022-11-23 19:57:09 +01:00
<ComboBoxItem x:Uid="FancyZones_OverlappingZonesSmallest" />
<ComboBoxItem x:Uid="FancyZones_OverlappingZonesLargest" />
<ComboBoxItem x:Uid="FancyZones_OverlappingZonesPositional" />
<ComboBoxItem x:Uid="FancyZones_OverlappingZonesClosestCenter" />
</ComboBox>
2024-01-12 18:01:40 +01:00
</tkcontrols:SettingsCard>
</tkcontrols:SettingsExpander.Items>
</tkcontrols:SettingsExpander>
2021-11-04 15:30:06 +01:00
2024-01-12 18:01:40 +01:00
<tkcontrols:SettingsExpander
2022-11-23 19:57:09 +01:00
x:Uid="FancyZones_Zone_Appearance"
2023-09-14 18:41:31 +02:00
HeaderIcon="{ui:FontIcon Glyph=}"
2022-11-23 19:57:09 +01:00
IsExpanded="True">
2024-01-03 16:41:26 +01:00
<ComboBox MinWidth="{StaticResource SettingActionControlMinWidth}" SelectedIndex="{x:Bind ViewModel.SystemTheme, Mode=TwoWay, Converter={StaticResource BoolToComboBoxIndexConverter}}">
2022-11-23 19:57:09 +01:00
<ComboBoxItem x:Uid="FancyZones_Radio_Custom_Colors" />
<ComboBoxItem x:Uid="FancyZones_Radio_Default_Theme" />
</ComboBox>
2024-01-12 18:01:40 +01:00
<tkcontrols:SettingsExpander.Items>
<tkcontrols:SettingsCard ContentAlignment="Left">
<controls:FancyZonesPreviewControl
2023-05-09 16:40:18 +02:00
Width="192"
Height="108"
2022-11-23 19:57:09 +01:00
CustomBorderColor="{x:Bind Path=ViewModel.ZoneBorderColor, Mode=OneWay}"
CustomHighlightColor="{x:Bind Path=ViewModel.ZoneHighlightColor, Mode=OneWay}"
CustomInActiveColor="{x:Bind Path=ViewModel.ZoneInActiveColor, Mode=OneWay}"
CustomNumberColor="{x:Bind Path=ViewModel.ZoneNumberColor, Mode=OneWay}"
2024-01-03 16:41:26 +01:00
HighlightOpacity="{x:Bind ViewModel.HighlightOpacity, Mode=OneWay}"
IsSystemTheme="{x:Bind ViewModel.SystemTheme, Mode=OneWay}"
2022-11-23 19:57:09 +01:00
ShowZoneNumber="{x:Bind Path=ViewModel.ShowZoneNumber, Mode=OneWay}" />
2024-01-12 18:01:40 +01:00
</tkcontrols:SettingsCard>
<tkcontrols:SettingsCard ContentAlignment="Left">
2024-01-03 16:41:26 +01:00
<CheckBox x:Uid="FancyZones_ShowZoneNumberCheckBoxControl" IsChecked="{x:Bind ViewModel.ShowZoneNumber, Mode=TwoWay}" />
2024-01-12 18:01:40 +01:00
</tkcontrols:SettingsCard>
<tkcontrols:SettingsCard x:Uid="FancyZones_HighlightOpacity">
2022-11-23 19:57:09 +01:00
<Slider
MinWidth="{StaticResource SettingActionControlMinWidth}"
Maximum="100"
Minimum="0"
2024-01-03 16:41:26 +01:00
Value="{x:Bind ViewModel.HighlightOpacity, Mode=TwoWay}" />
2024-01-12 18:01:40 +01:00
</tkcontrols:SettingsCard>
<tkcontrols:SettingsCard x:Uid="FancyZones_ZoneHighlightColor" Visibility="{x:Bind ViewModel.SystemTheme, Mode=OneWay, Converter={StaticResource ReverseBoolToVisibilityConverter}}">
<controls:ColorPickerButton SelectedColor="{x:Bind Path=ViewModel.ZoneHighlightColor, Mode=TwoWay}" />
</tkcontrols:SettingsCard>
<tkcontrols:SettingsCard x:Uid="FancyZones_InActiveColor" Visibility="{x:Bind ViewModel.SystemTheme, Mode=OneWay, Converter={StaticResource ReverseBoolToVisibilityConverter}}">
<controls:ColorPickerButton x:Name="InActiveColorButton" SelectedColor="{x:Bind Path=ViewModel.ZoneInActiveColor, Mode=TwoWay}" />
</tkcontrols:SettingsCard>
<tkcontrols:SettingsCard x:Uid="FancyZones_BorderColor" Visibility="{x:Bind ViewModel.SystemTheme, Mode=OneWay, Converter={StaticResource ReverseBoolToVisibilityConverter}}">
<controls:ColorPickerButton SelectedColor="{x:Bind Path=ViewModel.ZoneBorderColor, Mode=TwoWay}" />
</tkcontrols:SettingsCard>
<tkcontrols:SettingsCard x:Uid="FancyZones_NumberColor" Visibility="{x:Bind ViewModel.SystemTheme, Mode=OneWay, Converter={StaticResource ReverseBoolToVisibilityConverter}}">
<controls:ColorPickerButton SelectedColor="{x:Bind Path=ViewModel.ZoneNumberColor, Mode=TwoWay}" />
</tkcontrols:SettingsCard>
</tkcontrols:SettingsExpander.Items>
</tkcontrols:SettingsExpander>
</controls:SettingsGroup>
<controls:SettingsGroup x:Uid="FancyZones_Windows" IsEnabled="{x:Bind ViewModel.IsEnabled, Mode=OneWay}">
<tkcontrols:SettingsExpander x:Uid="FancyZones_WindowBehavior_GroupSettings" IsExpanded="True">
<tkcontrols:SettingsExpander.Items>
<tkcontrols:SettingsCard ContentAlignment="Left">
2024-01-03 16:41:26 +01:00
<CheckBox x:Uid="FancyZones_DisplayOrWorkAreaChangeMoveWindowsCheckBoxControl" IsChecked="{x:Bind ViewModel.DisplayOrWorkAreaChangeMoveWindows, Mode=TwoWay}" />
2024-01-12 18:01:40 +01:00
</tkcontrols:SettingsCard>
<tkcontrols:SettingsCard ContentAlignment="Left">
2024-01-03 16:41:26 +01:00
<CheckBox x:Uid="FancyZones_ZoneSetChangeMoveWindows" IsChecked="{x:Bind ViewModel.ZoneSetChangeMoveWindows, Mode=TwoWay}" />
2024-01-12 18:01:40 +01:00
</tkcontrols:SettingsCard>
<tkcontrols:SettingsCard ContentAlignment="Left">
2024-01-03 16:41:26 +01:00
<CheckBox x:Uid="FancyZones_AppLastZoneMoveWindows" IsChecked="{x:Bind ViewModel.AppLastZoneMoveWindows, Mode=TwoWay}" />
2024-01-12 18:01:40 +01:00
</tkcontrols:SettingsCard>
<tkcontrols:SettingsCard ContentAlignment="Left">
2024-01-03 16:41:26 +01:00
<CheckBox x:Uid="FancyZones_OpenWindowOnActiveMonitor" IsChecked="{x:Bind ViewModel.OpenWindowOnActiveMonitor, Mode=TwoWay}" />
2024-01-12 18:01:40 +01:00
</tkcontrols:SettingsCard>
<tkcontrols:SettingsCard ContentAlignment="Left">
2024-01-03 16:41:26 +01:00
<CheckBox x:Uid="FancyZones_RestoreSize" IsChecked="{x:Bind ViewModel.RestoreSize, Mode=TwoWay}" />
2024-01-12 18:01:40 +01:00
</tkcontrols:SettingsCard>
<tkcontrols:SettingsCard ContentAlignment="Left">
2024-01-03 16:41:26 +01:00
<CheckBox x:Uid="FancyZones_MakeDraggedWindowTransparentCheckBoxControl" IsChecked="{x:Bind ViewModel.MakeDraggedWindowsTransparent, Mode=TwoWay}" />
2024-01-12 18:01:40 +01:00
</tkcontrols:SettingsCard>
<tkcontrols:SettingsCard ContentAlignment="Left">
2024-01-03 16:41:26 +01:00
<CheckBox x:Uid="FancyZones_AllowChildWindowSnap" IsChecked="{x:Bind ViewModel.AllowChildWindowSnap, Mode=TwoWay}" />
2024-01-12 18:01:40 +01:00
</tkcontrols:SettingsCard>
<tkcontrols:SettingsCard ContentAlignment="Left" Visibility="{x:Bind ViewModel.Windows11, Mode=OneWay, Converter={StaticResource BoolToVisibilityConverter}}">
2024-01-03 16:41:26 +01:00
<CheckBox x:Uid="FancyZones_DisableRoundCornersOnWindowSnap" IsChecked="{x:Bind ViewModel.DisableRoundCornersOnWindowSnap, Mode=TwoWay}" />
2024-01-12 18:01:40 +01:00
</tkcontrols:SettingsCard>
</tkcontrols:SettingsExpander.Items>
</tkcontrols:SettingsExpander>
2021-08-23 19:48:52 +02:00
2024-01-12 18:01:40 +01:00
<tkcontrols:SettingsExpander
2022-11-23 19:57:09 +01:00
x:Uid="FancyZones_WindowSwitching_GroupSettings"
2023-09-14 18:41:31 +02:00
HeaderIcon="{ui:FontIcon Glyph=}"
2022-11-23 19:57:09 +01:00
IsExpanded="True">
2024-01-03 16:41:26 +01:00
<ToggleSwitch x:Uid="ToggleSwitch" IsOn="{x:Bind ViewModel.WindowSwitching, Mode=TwoWay}" />
2024-01-12 18:01:40 +01:00
<tkcontrols:SettingsExpander.Items>
2023-10-24 12:25:55 +02:00
<!-- HACK: For some weird reason, a Shortcut Control is not working correctly if it's the first item in the expander, so we add an invisible card as the first one. -->
2024-01-12 18:01:40 +01:00
<tkcontrols:SettingsCard Visibility="Collapsed" />
<tkcontrols:SettingsCard x:Uid="FancyZones_HotkeyNextTabControl" IsEnabled="{x:Bind ViewModel.WindowSwitchingCategoryEnabled, Mode=OneWay}">
<controls:ShortcutControl MinWidth="{StaticResource SettingActionControlMinWidth}" HotkeySettings="{x:Bind Path=ViewModel.NextTabHotkey, Mode=TwoWay}" />
</tkcontrols:SettingsCard>
<tkcontrols:SettingsCard x:Uid="FancyZones_HotkeyPrevTabControl" IsEnabled="{x:Bind ViewModel.WindowSwitchingCategoryEnabled, Mode=OneWay}">
<controls:ShortcutControl MinWidth="{StaticResource SettingActionControlMinWidth}" HotkeySettings="{x:Bind Path=ViewModel.PrevTabHotkey, Mode=TwoWay}" />
</tkcontrols:SettingsCard>
</tkcontrols:SettingsExpander.Items>
</tkcontrols:SettingsExpander>
<tkcontrols:SettingsExpander
2022-11-23 19:57:09 +01:00
x:Uid="FancyZones_OverrideSnapHotkeys"
2023-09-14 18:41:31 +02:00
HeaderIcon="{ui:FontIcon Glyph=}"
2022-11-23 19:57:09 +01:00
IsExpanded="True">
2024-01-03 16:41:26 +01:00
<ToggleSwitch x:Uid="ToggleSwitch" IsOn="{x:Bind ViewModel.OverrideSnapHotkeys, Mode=TwoWay}" />
2024-01-12 18:01:40 +01:00
<tkcontrols:SettingsExpander.Items>
<tkcontrols:SettingsCard x:Uid="FancyZones_MoveWindow" IsEnabled="{x:Bind ViewModel.SnapHotkeysCategoryEnabled, Mode=OneWay}">
2022-11-23 19:57:09 +01:00
<ComboBox
MinWidth="{StaticResource SettingActionControlMinWidth}"
MinHeight="56"
2024-01-03 16:41:26 +01:00
SelectedIndex="{x:Bind ViewModel.MoveWindowsBasedOnPosition, Mode=TwoWay, Converter={StaticResource BoolToComboBoxIndexConverter}}">
2022-11-23 19:57:09 +01:00
<ComboBoxItem x:Uid="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Accessible">
2023-09-14 18:41:31 +02:00
<StackPanel Orientation="Vertical" Spacing="4">
2024-01-12 18:01:40 +01:00
<controls:IsEnabledTextBlock x:Uid="FancyZones_MoveWindowLeftRightBasedOnZoneIndex" />
2023-09-14 18:41:31 +02:00
<TextBlock FontFamily="{ThemeResource SymbolThemeFontFamily}" Style="{StaticResource SecondaryTextStyle}">
2022-11-23 19:57:09 +01:00
<Run x:Uid="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Description" />
</TextBlock>
</StackPanel>
</ComboBoxItem>
<ComboBoxItem x:Uid="FancyZones_MoveWindowBasedOnRelativePosition_Accessible">
2023-09-14 18:41:31 +02:00
<StackPanel Orientation="Vertical" Spacing="4">
2024-01-12 18:01:40 +01:00
<controls:IsEnabledTextBlock x:Uid="FancyZones_MoveWindowBasedOnRelativePosition" />
2023-09-14 18:41:31 +02:00
<TextBlock FontFamily="{ThemeResource SymbolThemeFontFamily}" Style="{StaticResource SecondaryTextStyle}">
2022-11-23 19:57:09 +01:00
<Run x:Uid="FancyZones_MoveWindowBasedOnRelativePosition_Description" />
</TextBlock>
</StackPanel>
</ComboBoxItem>
</ComboBox>
2024-01-12 18:01:40 +01:00
</tkcontrols:SettingsCard>
<tkcontrols:SettingsCard ContentAlignment="Left" IsEnabled="{x:Bind ViewModel.SnapHotkeysCategoryEnabled, Mode=OneWay}">
2024-01-03 16:41:26 +01:00
<CheckBox x:Uid="FancyZones_MoveWindowsAcrossAllMonitorsCheckBoxControl" IsChecked="{x:Bind ViewModel.MoveWindowsAcrossMonitors, Mode=TwoWay}" />
2024-01-12 18:01:40 +01:00
</tkcontrols:SettingsCard>
</tkcontrols:SettingsExpander.Items>
</tkcontrols:SettingsExpander>
</controls:SettingsGroup>
2021-08-23 19:48:52 +02:00
2024-01-12 18:01:40 +01:00
<controls:SettingsGroup x:Uid="FancyZones_Layouts" IsEnabled="{x:Bind ViewModel.IsEnabled, Mode=OneWay}">
<tkcontrols:SettingsExpander x:Uid="FancyZones_QuickLayoutSwitch" HeaderIcon="{ui:FontIcon Glyph=}">
2024-01-03 16:41:26 +01:00
<ToggleSwitch x:Uid="ToggleSwitch" IsOn="{x:Bind ViewModel.QuickLayoutSwitch, Mode=TwoWay}" />
2024-01-12 18:01:40 +01:00
<tkcontrols:SettingsExpander.Items>
<tkcontrols:SettingsCard ContentAlignment="Left" IsEnabled="{x:Bind ViewModel.QuickSwitchEnabled, Mode=OneWay}">
2024-01-03 16:41:26 +01:00
<CheckBox x:Uid="FancyZones_FlashZonesOnQuickSwitch" IsChecked="{x:Bind ViewModel.FlashZonesOnQuickSwitch, Mode=TwoWay}" />
2024-01-12 18:01:40 +01:00
</tkcontrols:SettingsCard>
</tkcontrols:SettingsExpander.Items>
</tkcontrols:SettingsExpander>
</controls:SettingsGroup>
2021-08-23 19:48:52 +02:00
2024-01-12 18:01:40 +01:00
<controls:SettingsGroup x:Uid="ExcludedApps" IsEnabled="{x:Bind ViewModel.IsEnabled, Mode=OneWay}">
2022-11-23 19:57:09 +01:00
2024-01-12 18:01:40 +01:00
<tkcontrols:SettingsExpander
2022-11-23 19:57:09 +01:00
x:Uid="FancyZones_ExcludeApps"
2023-09-14 18:41:31 +02:00
HeaderIcon="{ui:FontIcon Glyph=}"
2022-11-23 19:57:09 +01:00
IsExpanded="True">
2024-01-12 18:01:40 +01:00
<tkcontrols:SettingsExpander.Items>
<tkcontrols:SettingsCard HorizontalContentAlignment="Stretch" ContentAlignment="Vertical">
2022-11-23 19:57:09 +01:00
<TextBox
x:Uid="FancyZones_ExcludeApps_TextBoxControl"
MinWidth="240"
MinHeight="160"
AcceptsReturn="True"
ScrollViewer.IsVerticalRailEnabled="True"
ScrollViewer.VerticalScrollBarVisibility="Visible"
ScrollViewer.VerticalScrollMode="Enabled"
2024-01-03 16:41:26 +01:00
Text="{x:Bind ViewModel.ExcludedApps, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"
2022-11-23 19:57:09 +01:00
TextWrapping="Wrap" />
2024-01-12 18:01:40 +01:00
</tkcontrols:SettingsCard>
</tkcontrols:SettingsExpander.Items>
</tkcontrols:SettingsExpander>
</controls:SettingsGroup>
2020-05-29 15:11:52 +02:00
</StackPanel>
2024-01-12 18:01:40 +01:00
</controls:SettingsPageControl.ModuleContent>
2020-04-16 11:45:27 -07:00
2024-01-12 18:01:40 +01:00
<controls:SettingsPageControl.PrimaryLinks>
<controls:PageLink x:Uid="LearnMore_FancyZones" Link="https://aka.ms/PowerToysOverview_FancyZones" />
</controls:SettingsPageControl.PrimaryLinks>
</controls:SettingsPageControl>
2020-03-31 14:32:22 +02:00
</Page>