Accessibility name - .NET MAUI

In MAUI, the SemanticProperties.Description property is used as the accessibility name.

<Control 
  SemanticProperties.Description="Appt" />

Warning:

  1. Avoid setting the Description attached property on a Label. This will prevent the Text property from being spoken by the screen reader. The visual text should ideally match the text read aloud by the screen reader.
  2. Avoid setting the Description attached property on an Entry or Editor on Android. Doing so will stop TalkBack actions from functioning. Instead, use the Placeholder property or the Hint attached property.
  3. On iOS, if you set the Description property on any control that has children, the screen reader will be unable to reach the children. This is because iOS doesn't provide accessibility features that allow navigation from a parent element into a child element.