12 references to NameProperty
Microsoft.Maui.Controls (10)
AutomationProperties.cs (2)
59
return (string)bindable.GetValue(
NameProperty
);
94
bindable.SetValue(
NameProperty
, value);
Compatibility\Handlers\ListView\iOS\CellRenderer.cs (2)
78
if (cell.IsSet(AutomationProperties.
NameProperty
))
79
tableViewCell.AccessibilityLabel = cell.GetValue(AutomationProperties.
NameProperty
).ToString();
Compatibility\Handlers\NavigationPage\iOS\NavigationRenderer.cs (1)
989
uIBarButtonItem.AccessibilityLabel = (string)element.GetValue(AutomationProperties.
NameProperty
) ?? _defaultAccessibilityLabel;
Compatibility\iOS\Extensions\AccessibilityExtensions.cs (2)
58
Control.AccessibilityLabel = (string)Element.GetValue(AutomationProperties.
NameProperty
) ?? _defaultAccessibilityLabel;
90
Control.AccessibilityLabel = (string)Element.GetValue(AutomationProperties.
NameProperty
) ?? _defaultAccessibilityLabel;
Compatibility\iOS\Extensions\ToolbarItemExtensions.cs (2)
94
else if (e.PropertyName == AutomationProperties.
NameProperty
.PropertyName)
185
else if (e.PropertyName == AutomationProperties.
NameProperty
.PropertyName)
SemanticProperties.cs (1)
54
AutomationProperties.
NameProperty
,
Microsoft.Maui.Controls.Compatibility (2)
Tizen\Renderers\VisualElementRenderer.cs (2)
71
RegisterPropertyHandler(AutomationProperties.
NameProperty
, SetAccessibilityName);
426
if (initialize && (string)Element.GetValue(AutomationProperties.
NameProperty
) == (default(string)))