10 references to ExcludedWithChildrenProperty
Microsoft.Maui.Controls (10)
AutomationProperties.cs (2)
43 return (bool?)bindable.GetValue(ExcludedWithChildrenProperty); 79 bindable.SetValue(ExcludedWithChildrenProperty, value);
Compatibility\Handlers\ListView\iOS\CellRenderer.cs (2)
72 if (cell.IsSet(AutomationProperties.ExcludedWithChildrenProperty)) 73 tableViewCell.AccessibilityElementsHidden = cell.GetValue(AutomationProperties.ExcludedWithChildrenProperty).Equals(true);
Compatibility\Handlers\NavigationPage\iOS\NavigationRenderer.cs (1)
1012 uIBarButtonItem.AccessibilityElementsHidden = (bool)((bool?)element.GetValue(AutomationProperties.ExcludedWithChildrenProperty) ?? _defaultAccessibilityElementsHidden);
Compatibility\iOS\Extensions\AccessibilityExtensions.cs (2)
137 if (!Element.IsSet(AutomationProperties.ExcludedWithChildrenProperty)) 146 Control.AccessibilityElementsHidden = (bool)((bool?)Element.GetValue(AutomationProperties.ExcludedWithChildrenProperty) ?? _defaultAccessibilityElementsHidden);
Element\Element.iOS.cs (2)
35 if (!view.IsSet(AutomationProperties.ExcludedWithChildrenProperty)) 41 Control.AccessibilityElementsHidden = (bool)((bool?)view.GetValue(AutomationProperties.ExcludedWithChildrenProperty) ?? _defaultAccessibilityElementsHidden);
Element\Element.Mapper.cs (1)
14 ViewHandler.ViewMapper.ReplaceMapping<Maui.IElement, IElementHandler>(AutomationProperties.ExcludedWithChildrenProperty.PropertyName, MapAutomationPropertiesExcludedWithChildren);