Accessibility focusable - .NET MAUI
In MAUI, the IsInAccessibleTree
property indicates whether assistive technologies can focus on an element.
Also, the ExcludedWithChildren
property determines if an element and its children can be focused by assistive technologies.
<Image
AutomationProperties.IsInAccessibleTree="false" />
<StackLayout AutomationProperties.ExcludedWithChildren="true">
...
</StackLayout>