Implemented interface member:
property
Children
Microsoft.Maui.Controls.IViewContainer<T>.Children
13 references to Children
Microsoft.Maui.Controls (9)
CarouselPage\CarouselPage.cs (1)
6 [ContentProperty(nameof(Children))]
MultiPage.cs (6)
208 if (Children.IsReadOnly) 212 foreach (T page in Children) 217 if (CurrentPage == null || Children.IndexOf(CurrentPage) == -1) 218 CurrentPage = Children.FirstOrDefault(); 229 for (int i = e.NewStartingIndex; i < Children.Count; i++) 248 for (int i = removeIndex + e.OldItems.Count; i < Children.Count; i++)
TabbedPage\TabbedPage.cs (2)
8 [ContentProperty(nameof(Children))] 116 foreach (var page in Children)
Microsoft.Maui.Controls.Compatibility (4)
iOS\Renderers\CarouselPageRenderer.cs (2)
314 foreach (ContentPage child in ((CarouselPage)Element).Children) 323 _scrollView.ContentSize = new SizeF(bounds.Width * ((CarouselPage)Element).Children.Count, bounds.Height);
iOS\Renderers\TabbedRenderer.cs (2)
307 foreach (var page in Tabbed.Children) 475 Tag = Tabbed.Children.IndexOf(page),