18 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)
1019
uIBarButtonItem.AccessibilityLabel = (string)element.GetValue(AutomationProperties.
NameProperty
) ?? _defaultAccessibilityLabel;
Compatibility\iOS\Extensions\AccessibilityExtensions.cs (2)
63
Control.AccessibilityLabel = (string)Element.GetValue(AutomationProperties.
NameProperty
) ?? _defaultAccessibilityLabel;
121
Control.AccessibilityLabel = (string)Element.GetValue(AutomationProperties.
NameProperty
) ?? _defaultAccessibilityLabel;
Compatibility\iOS\Extensions\ToolbarItemExtensions.cs (2)
94
else if (e.PropertyName == AutomationProperties.
NameProperty
.PropertyName)
190
else if (e.PropertyName == AutomationProperties.
NameProperty
.PropertyName)
SemanticProperties.cs (1)
54
AutomationProperties.
NameProperty
,
Microsoft.Maui.Controls.Compatibility (8)
iOS\Cells\CellRenderer.cs (2)
58
if (cell.IsSet(AutomationProperties.
NameProperty
))
59
tableViewCell.AccessibilityLabel = cell.GetValue(AutomationProperties.
NameProperty
).ToString();
iOS\Renderers\ButtonRenderer.cs (1)
155
var elemValue = (string)Element?.GetValue(AutomationProperties.
NameProperty
);
iOS\Renderers\CheckBoxRendererBase.cs (1)
37
var elemValue = (string)Element?.GetValue(AutomationProperties.
NameProperty
);
iOS\Renderers\ImageButtonRenderer.cs (1)
136
var elemValue = (string)Element?.GetValue(AutomationProperties.
NameProperty
);
iOS\Renderers\LabelRenderer.cs (1)
316
var elemValue = (string)Element?.GetValue(AutomationProperties.
NameProperty
);
iOS\Renderers\NavigationRenderer.cs (1)
884
uIBarButtonItem.AccessibilityLabel = (string)element.GetValue(AutomationProperties.
NameProperty
) ?? _defaultAccessibilityLabel;
iOS\VisualElementRenderer.cs (1)
343
else if (e.PropertyName == AutomationProperties.
NameProperty
.PropertyName)