Skip to content

Commit 8e56964

Browse files
committed
add additional info for screen reader
1 parent 3b557f2 commit 8e56964

File tree

2 files changed

+13
-5
lines changed

2 files changed

+13
-5
lines changed

controls/collectionview/accessibility/screen-reader.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,22 @@ tags: accessibility, collectionview, screen reader, accessibility support, dotne
1111

1212
The Telerik UI for .NET MAUI CollectionView provides extensive accessibility support and enables users with disabilities to acquire complete control over its features.
1313

14-
The CollectionView allows the users to use the Android (TalkBack), WinUI (Narrator), iOS and MacCatalyst (VoiceOver) screen readers for voice descriptions of the elements inside the CollectionView.
14+
The CollectionView allows users to use the Android (TalkBack), WinUI (Narrator), iOS and MacCatalyst (VoiceOver) screen readers for voice descriptions of the elements inside the CollectionView.
1515

16-
The Telerik MAUI CollectionView exposes `AutomationManager` class which controlling the automation behavior of the control. The `AutomationManager` class is responsible for managing the automation features of the CollectionView, such as enabling or disabling screen reader support.
16+
The Telerik MAUI CollectionView exposes an `AutomationManager` class which controls the automation behavior of the control. The `AutomationManager` class is responsible for managing the automation features of the CollectionView, such as enabling or disabling screen reader support.
1717

1818
## WinUI Automation Behavior
1919

20-
The `AutomationManager` class exposes `EnableWindowsAutomation` (`bool`) property, which determines whether the automation-related logic is enabled or not for WinUI. The default value is `false`, which means that the automation logic is disabled by default. To enable the automation logic, set the `EnableWindowsAutomation` property to `true`.
20+
The `AutomationManager` class exposes the `EnableWindowsAutomation` (`bool`) property, which determines whether the automation-related logic is enabled for WinUI. The default value is `false`, which means that the automation logic is disabled by default. To enable the automation logic, set the `EnableWindowsAutomation` property to `true`.
2121

22-
![.NET MAUI ColelctionView Screen Reader Support](../images/collectionview-screen-reader.png)
22+
Here's how to enable WinUI automation support:
23+
24+
```csharp
25+
// Enable Windows automation
26+
AutomationManager.EnableWindowsAutomation = true;
27+
```
28+
29+
![.NET MAUI CollectionView Screen Reader Support](../images/collectionview-screen-reader.png)
2330

2431
## See Also
2532

spell-ignore.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,4 +89,5 @@ Theming
8989
SpeechToTextButton
9090
SpeechToText
9191
BottomSheet
92-
MCP
92+
MCP
93+
MacCatalyst

0 commit comments

Comments
 (0)