19 references to AutomationProperties
Microsoft.Maui.Controls (19)
AutomationProperties.cs (5)
11
public static readonly BindableProperty HelpTextProperty = BindableProperty.Create("HelpText", typeof(string), typeof(
AutomationProperties
), default(string));
14
public static readonly BindableProperty IsInAccessibleTreeProperty = BindableProperty.Create("IsInAccessibleTree", typeof(bool?), typeof(
AutomationProperties
), null);
17
public static readonly BindableProperty ExcludedWithChildrenProperty = BindableProperty.Create("ExcludedWithChildren", typeof(bool?), typeof(
AutomationProperties
), null);
21
public static readonly BindableProperty LabeledByProperty = BindableProperty.Create("LabeledBy", typeof(VisualElement), typeof(
AutomationProperties
), default(VisualElement));
25
public static readonly BindableProperty NameProperty = BindableProperty.Create("Name", typeof(string), typeof(
AutomationProperties
), default(string));
Element\Element.Mapper.cs (2)
13
ViewHandler.ViewMapper.ReplaceMapping<Maui.IElement, IElementHandler>(
AutomationProperties
.IsInAccessibleTreeProperty.PropertyName, MapAutomationPropertiesIsInAccessibleTree);
14
ViewHandler.ViewMapper.ReplaceMapping<Maui.IElement, IElementHandler>(
AutomationProperties
.ExcludedWithChildrenProperty.PropertyName, MapAutomationPropertiesExcludedWithChildren);
Element\Element.Standard.cs (2)
11
/// Maps the abstract <see cref="
AutomationProperties
.IsInAccessibleTreeProperty"/> property to the platform-specific implementations.
20
/// Maps the abstract <see cref="
AutomationProperties
.ExcludedWithChildrenProperty"/> property to the platform-specific implementations.
SemanticProperties.cs (4)
54
AutomationProperties
.NameProperty,
55
AutomationProperties
.LabeledByProperty,
56
AutomationProperties
.HelpTextProperty,
58
AutomationProperties
.IsInAccessibleTreeProperty,
Shell\SearchHandler.cs (6)
728
AutomationProperties
.SetName(queryIcon, queryIconName);
731
AutomationProperties
.SetHelpText(queryIcon, queryIconHelpText);
739
AutomationProperties
.SetName(clearIcon, clearIconName);
742
AutomationProperties
.SetHelpText(clearIcon, clearIconHelpText);
750
AutomationProperties
.SetName(clearPlaceholderIcon, clearPlaceholderName);
753
AutomationProperties
.SetHelpText(clearPlaceholderIcon, clearPlacholderHelpText);