4 instantiations of ReadOnlyCastingList
Microsoft.Maui.Controls (4)
Layout\Grid.cs (2)
116 IReadOnlyList<IGridRowDefinition> IGridLayout.RowDefinitions => _rowDefs ??= new(RowDefinitions); 117 IReadOnlyList<IGridColumnDefinition> IGridLayout.ColumnDefinitions => _colDefs ??= new(ColumnDefinitions);
NavigationPage\NavigationPage.cs (1)
728 _castingList = new Lazy<ReadOnlyCastingList<Page, Element>>(() => new ReadOnlyCastingList<Page, Element>(Owner.InternalChildren));
NavigationPage\NavigationPage.Legacy.cs (1)
263 _castingList = new Lazy<ReadOnlyCastingList<Page, Element>>(() => new ReadOnlyCastingList<Page, Element>(Owner.InternalChildren));
6 references to ReadOnlyCastingList
Microsoft.Maui.Controls (6)
Layout\Grid.cs (2)
114 ReadOnlyCastingList<IGridRowDefinition, RowDefinition> _rowDefs; 115 ReadOnlyCastingList<IGridColumnDefinition, ColumnDefinition> _colDefs;
NavigationPage\NavigationPage.cs (2)
723 readonly Lazy<ReadOnlyCastingList<Page, Element>> _castingList; 728 _castingList = new Lazy<ReadOnlyCastingList<Page, Element>>(() => new ReadOnlyCastingList<Page, Element>(Owner.InternalChildren));
NavigationPage\NavigationPage.Legacy.cs (2)
258 readonly Lazy<ReadOnlyCastingList<Page, Element>> _castingList; 263 _castingList = new Lazy<ReadOnlyCastingList<Page, Element>>(() => new ReadOnlyCastingList<Page, Element>(Owner.InternalChildren));