6 overrides of CreateLayoutManager
Microsoft.Maui.Controls (6)
Layout\AbsoluteLayout.cs (1)
14 protected override ILayoutManager CreateLayoutManager()
Layout\FlexLayout.cs (1)
554 protected override ILayoutManager CreateLayoutManager()
Layout\Grid.cs (1)
295 protected override ILayoutManager CreateLayoutManager() => new GridLayoutManager(this);
Layout\HorizontalStackLayout.cs (1)
9 protected override ILayoutManager CreateLayoutManager() => new HorizontalStackLayoutManager(this);
Layout\StackLayout.cs (1)
35 protected override ILayoutManager CreateLayoutManager()
Layout\VerticalStackLayout.cs (1)
9 protected override ILayoutManager CreateLayoutManager() => new VerticalStackLayoutManager(this);
1 reference to CreateLayoutManager
Microsoft.Maui.Controls (1)
Layout\Layout.cs (1)
25 return _layoutManager ??= GetLayoutManagerFromFactory(this) ?? CreateLayoutManager();