3 overrides of LogicalChildrenInternalBackingStore
Microsoft.Maui.Controls (3)
LegacyLayouts\Layout.cs (1)
171 private protected override IList<Element> LogicalChildrenInternalBackingStore
Menu\MenuBarItem.cs (1)
45 private protected override IList<Element> LogicalChildrenInternalBackingStore { get; }
Menu\MenuFlyout.cs (1)
18 private protected override IList<Element> LogicalChildrenInternalBackingStore
9 references to LogicalChildrenInternalBackingStore
Microsoft.Maui.Controls (9)
Element\Element.cs (9)
190 _logicalChildrenReadonly ??= new ReadOnlyCollection<Element>(LogicalChildrenInternalBackingStore); 207 LogicalChildrenInternalBackingStore.Insert(index, element); 224 LogicalChildrenInternalBackingStore.Add(element); 243 if (LogicalChildrenInternalBackingStore is null) 246 var index = LogicalChildrenInternalBackingStore.IndexOf(element); 260 if (LogicalChildrenInternalBackingStore is null) 267 for (int i = LogicalChildrenInternalBackingStore.Count - 1; i >= 0; i--) 269 RemoveLogicalChild(LogicalChildrenInternalBackingStore[i], i); 275 LogicalChildrenInternalBackingStore.Remove(element);