mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-02-20 18:20:27 +01:00
Compare commits
4 Commits
async-cpp-
...
hamburger-
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c1a3aad9b8 | ||
|
|
17567d571a | ||
|
|
7576429716 | ||
|
|
3dc1cea6eb |
@@ -7,6 +7,7 @@ using CommunityToolkit.Mvvm.Messaging;
|
|||||||
using ManagedCommon;
|
using ManagedCommon;
|
||||||
using Microsoft.CmdPal.Core.ViewModels;
|
using Microsoft.CmdPal.Core.ViewModels;
|
||||||
using Microsoft.CmdPal.Core.ViewModels.Messages;
|
using Microsoft.CmdPal.Core.ViewModels.Messages;
|
||||||
|
using Microsoft.CmdPal.UI.Helpers;
|
||||||
using Microsoft.CmdPal.UI.Messages;
|
using Microsoft.CmdPal.UI.Messages;
|
||||||
using Microsoft.CmdPal.UI.ViewModels;
|
using Microsoft.CmdPal.UI.ViewModels;
|
||||||
using Microsoft.Extensions.DependencyInjection;
|
using Microsoft.Extensions.DependencyInjection;
|
||||||
@@ -162,11 +163,11 @@ public sealed partial class ListPage : Page,
|
|||||||
if (listViewPeer is not null && li is not null)
|
if (listViewPeer is not null && li is not null)
|
||||||
{
|
{
|
||||||
var notificationText = li.Title;
|
var notificationText = li.Title;
|
||||||
listViewPeer.RaiseNotificationEvent(
|
|
||||||
Microsoft.UI.Xaml.Automation.Peers.AutomationNotificationKind.Other,
|
UIHelper.AnnounceActionForAccessibility(
|
||||||
Microsoft.UI.Xaml.Automation.Peers.AutomationNotificationProcessing.MostRecent,
|
ItemsList,
|
||||||
notificationText,
|
notificationText,
|
||||||
"CommandPaletteSelectedItemChanged");
|
"CommandPaletteSelectedItemChanged");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
32
src/modules/cmdpal/Microsoft.CmdPal.UI/Helpers/UIHelper.cs
Normal file
32
src/modules/cmdpal/Microsoft.CmdPal.UI/Helpers/UIHelper.cs
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
// Copyright (c) Microsoft Corporation
|
||||||
|
// The Microsoft Corporation licenses this file to you under the MIT license.
|
||||||
|
// See the LICENSE file in the project root for more information.
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using Microsoft.UI.Xaml;
|
||||||
|
using Microsoft.UI.Xaml.Automation.Peers;
|
||||||
|
|
||||||
|
namespace Microsoft.CmdPal.UI.Helpers;
|
||||||
|
|
||||||
|
public static partial class UIHelper
|
||||||
|
{
|
||||||
|
static UIHelper()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void AnnounceActionForAccessibility(UIElement ue, string announcement, string activityID)
|
||||||
|
{
|
||||||
|
if (FrameworkElementAutomationPeer.FromElement(ue) is AutomationPeer peer)
|
||||||
|
{
|
||||||
|
peer.RaiseNotificationEvent(
|
||||||
|
AutomationNotificationKind.ActionCompleted,
|
||||||
|
AutomationNotificationProcessing.ImportantMostRecent,
|
||||||
|
announcement,
|
||||||
|
activityID);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -25,17 +25,11 @@
|
|||||||
<RowDefinition Height="*" />
|
<RowDefinition Height="*" />
|
||||||
</Grid.RowDefinitions>
|
</Grid.RowDefinitions>
|
||||||
<!-- TO DO: Replace this with WinUI TitleBar once that ships. -->
|
<!-- TO DO: Replace this with WinUI TitleBar once that ships. -->
|
||||||
<Button
|
|
||||||
x:Name="PaneToggleBtn"
|
|
||||||
Width="48"
|
|
||||||
HorizontalAlignment="Left"
|
|
||||||
VerticalAlignment="Center"
|
|
||||||
Click="PaneToggleBtn_Click"
|
|
||||||
Style="{StaticResource PaneToggleButtonStyle}" />
|
|
||||||
<StackPanel
|
<StackPanel
|
||||||
x:Name="AppTitleBar"
|
x:Name="AppTitleBar"
|
||||||
Grid.Row="0"
|
Grid.Row="0"
|
||||||
Height="48"
|
Height="48"
|
||||||
|
Margin="16,0,0,0"
|
||||||
Orientation="Horizontal">
|
Orientation="Horizontal">
|
||||||
<Image
|
<Image
|
||||||
Width="16"
|
Width="16"
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ using Microsoft.CmdPal.UI.ViewModels;
|
|||||||
using Microsoft.CmdPal.UI.ViewModels.Messages;
|
using Microsoft.CmdPal.UI.ViewModels.Messages;
|
||||||
using Microsoft.UI.Windowing;
|
using Microsoft.UI.Windowing;
|
||||||
using Microsoft.UI.Xaml;
|
using Microsoft.UI.Xaml;
|
||||||
|
using Microsoft.UI.Xaml.Automation.Peers;
|
||||||
using Microsoft.UI.Xaml.Controls;
|
using Microsoft.UI.Xaml.Controls;
|
||||||
using WinUIEx;
|
using WinUIEx;
|
||||||
using RS_ = Microsoft.CmdPal.UI.Helpers.ResourceLoaderInstance;
|
using RS_ = Microsoft.CmdPal.UI.Helpers.ResourceLoaderInstance;
|
||||||
@@ -22,6 +23,9 @@ public sealed partial class SettingsWindow : WindowEx,
|
|||||||
{
|
{
|
||||||
public ObservableCollection<Crumb> BreadCrumbs { get; } = [];
|
public ObservableCollection<Crumb> BreadCrumbs { get; } = [];
|
||||||
|
|
||||||
|
// Gets or sets optional action invoked after NavigationView is loaded.
|
||||||
|
public Action NavigationViewLoaded { get; set; } = () => { };
|
||||||
|
|
||||||
public SettingsWindow()
|
public SettingsWindow()
|
||||||
{
|
{
|
||||||
this.InitializeComponent();
|
this.InitializeComponent();
|
||||||
@@ -35,10 +39,33 @@ public sealed partial class SettingsWindow : WindowEx,
|
|||||||
WeakReferenceMessenger.Default.Register<QuitMessage>(this);
|
WeakReferenceMessenger.Default.Register<QuitMessage>(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Handles NavigationView loaded event.
|
||||||
|
// Sets up initial navigation and accessibility notifications.
|
||||||
private void NavView_Loaded(object sender, RoutedEventArgs e)
|
private void NavView_Loaded(object sender, RoutedEventArgs e)
|
||||||
{
|
{
|
||||||
|
// Delay necessary to ensure NavigationView visual state can match navigation
|
||||||
|
Task.Delay(500).ContinueWith(_ => this.NavigationViewLoaded?.Invoke(), TaskScheduler.FromCurrentSynchronizationContext());
|
||||||
|
|
||||||
NavView.SelectedItem = NavView.MenuItems[0];
|
NavView.SelectedItem = NavView.MenuItems[0];
|
||||||
Navigate("General");
|
Navigate("General");
|
||||||
|
|
||||||
|
if (sender is NavigationView navigationView)
|
||||||
|
{
|
||||||
|
// Register for pane open/close changes to announce to screen readers
|
||||||
|
navigationView.RegisterPropertyChangedCallback(NavigationView.IsPaneOpenProperty, AnnounceNavigationPaneStateChanged);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Announces navigation pane open/close state to screen readers for accessibility.
|
||||||
|
private void AnnounceNavigationPaneStateChanged(DependencyObject sender, DependencyProperty dp)
|
||||||
|
{
|
||||||
|
if (sender is NavigationView navigationView)
|
||||||
|
{
|
||||||
|
UIHelper.AnnounceActionForAccessibility(
|
||||||
|
ue: (UIElement)sender,
|
||||||
|
(sender as NavigationView)?.IsPaneOpen == true ? RS_.GetString("NavigationPaneOpened") : RS_.GetString("NavigationPaneClosed"),
|
||||||
|
"NavigationViewPaneIsOpenChangeNotificationId");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void NavView_ItemInvoked(NavigationView sender, NavigationViewItemInvokedEventArgs args)
|
private void NavView_ItemInvoked(NavigationView sender, NavigationViewItemInvokedEventArgs args)
|
||||||
@@ -109,24 +136,15 @@ public sealed partial class SettingsWindow : WindowEx,
|
|||||||
WeakReferenceMessenger.Default.UnregisterAll(this);
|
WeakReferenceMessenger.Default.UnregisterAll(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void PaneToggleBtn_Click(object sender, RoutedEventArgs e)
|
|
||||||
{
|
|
||||||
NavView.IsPaneOpen = !NavView.IsPaneOpen;
|
|
||||||
}
|
|
||||||
|
|
||||||
private void NavView_DisplayModeChanged(NavigationView sender, NavigationViewDisplayModeChangedEventArgs args)
|
private void NavView_DisplayModeChanged(NavigationView sender, NavigationViewDisplayModeChangedEventArgs args)
|
||||||
{
|
{
|
||||||
if (args.DisplayMode == NavigationViewDisplayMode.Compact || args.DisplayMode == NavigationViewDisplayMode.Minimal)
|
if (args.DisplayMode == NavigationViewDisplayMode.Compact || args.DisplayMode == NavigationViewDisplayMode.Minimal)
|
||||||
{
|
{
|
||||||
PaneToggleBtn.Visibility = Visibility.Visible;
|
|
||||||
NavView.IsPaneToggleButtonVisible = false;
|
NavView.IsPaneToggleButtonVisible = false;
|
||||||
AppTitleBar.Margin = new Thickness(48, 0, 0, 0);
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
PaneToggleBtn.Visibility = Visibility.Collapsed;
|
|
||||||
NavView.IsPaneToggleButtonVisible = true;
|
NavView.IsPaneToggleButtonVisible = true;
|
||||||
AppTitleBar.Margin = new Thickness(16, 0, 0, 0);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -434,4 +434,10 @@ Right-click to remove the key combination, thereby deactivating the shortcut.</v
|
|||||||
<data name="StatusMessagesButton.[using:Microsoft.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
|
<data name="StatusMessagesButton.[using:Microsoft.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
|
||||||
<value>Show status messages</value>
|
<value>Show status messages</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="NavigationPaneClosed" xml:space="preserve">
|
||||||
|
<value>Navigation pane closed</value>
|
||||||
|
</data>
|
||||||
|
<data name="NavigationPageOpened" xml:space="preserve">
|
||||||
|
<value>Navigation page opened</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
Reference in New Issue
Block a user