Skip to content

Commit

Permalink
Add UIA element grouping to SettingsContainer (#15756)
Browse files Browse the repository at this point in the history
Adds an `AutomationProperty.Name` to the main grid in the `SettingContainer`. Doing so makes it so that the group of elements is considered a "group \<header\>".

Now, when navigating with a screen reader, when you enter the group of elements, the "group \<header\>" will be presented. Thus, if the user navigates to the "reset" button, it'll be prefaced with a "group \<header\>" announcement first. If the user navigates to it from the other direction (the setting control), this announcement isn't made, but the user already has an understanding of what group of settings they're in, which is standard practice.

Closes #15158
  • Loading branch information
carlos-zamora committed Jul 25, 2023
1 parent 1a40ff3 commit d70794a
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -106,7 +106,8 @@
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="local:SettingContainer">
<Grid Style="{StaticResource NonExpanderGrid}">
<Grid AutomationProperties.Name="{TemplateBinding Header}"
Style="{StaticResource NonExpanderGrid}">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="Auto" />
Expand Down

0 comments on commit d70794a

Please sign in to comment.