Skip to content

Commit 149231b

Browse files
Merge pull request #1224 from telerik/didi/images
updates
2 parents 5cdc1c2 + 8e56964 commit 149231b

File tree

6 files changed

+22
-6
lines changed

6 files changed

+22
-6
lines changed

controls/bottomsheet/content.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ xmlns:telerik="http://schemas.telerik.com/2022/xaml/maui"
3232

3333
**5.** Add the following code for the `RadCollectionView.ItemTapped` event handler:
3434

35-
<snippet id='bottomsheet-content-tapped-event' />
35+
<snippet id='bottomsheet-open-sheet-view' />
3636

3737
This is the result on Android:
3838

controls/collectionview/accessibility/screen-reader.md

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +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-
![.NET MAUI ColelctionView Screen Reader Support](../images/collectionview-screen-reader.png)
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.
17+
18+
## WinUI Automation Behavior
19+
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`.
21+
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)
1730

1831
## See Also
1932

-240 Bytes
Loading

controls/speechtotextbutton/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ The Telerik UI for .NET MAUI SpeechToTextButton is a UI component that enables u
1313

1414
When the user taps the button, the control uses a speech recognition service, listens for voice input, and then transcribes the recognized speech into text. The recognized text can be displayed in a text field or used for further processing in your application.
1515

16-
![.NET MAUI SpeechToTextButton Overview](images/speechtotext-overview.png)
16+
![.NET MAUI SpeechToTextButton Overview](images/speechtotextbutton-overview.png)
1717

1818
## Key Features of the Telerik .NET MAUI SpeechToTextButton
1919

controls/speechtotextbutton/states.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ slug: speechtotextbutton-states
99

1010
# .NET MAUI SpeechToTextButton Architecture and States
1111

12-
The SpeechTextButton control handles user interactions and provides visual feedback about its current state, for example, when it's listening or ready. The button uses a speech recognition service that varies by platform and also provides an AI agent connection. Almost all operations are asynchronous.
12+
The SpeechTextButton control handles user interactions and provides visual feedback about its current state, for example, when it's listening or ready.
13+
14+
The button uses a speech recognition service that varies by platform and also provides an AI agent connection. Almost all operations are asynchronous.
1315

1416
The image below explains how the control works and how the states are managed:
1517

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)