2 implementations of Parent
Microsoft.Maui.Controls (2)
Element\Element.cs (1)
958 Maui.IElement Maui.IElement.Parent => Parent;
Toolbar\Toolbar.cs (1)
69 public Maui.IElement Parent => _parent;
5 references to Parent
Microsoft.Maui (3)
Handlers\View\ViewHandler.cs (1)
470 if (view.Parent is ILayout layout)
HotReload\HotReloadHelper.cs (1)
195 roots = ActiveViews.Where(x => x != null && x.Parent == null).ToList();
Platform\ElementExtensions.cs (1)
195 current = current.Parent;
Microsoft.Maui.Controls (2)
Page\Page.cs (1)
667 if (window?.Parent == null)
VisualElement\VisualElement.cs (1)
2368 internal IView? ParentView => ((this as IView)?.Parent as IView);