5 implementations of Measure
Microsoft.Maui (2)
Layouts\FlexLayoutManager.cs (1)
43
public Size
Measure
(double widthConstraint, double heightConstraint)
Layouts\LayoutManager.cs (1)
16
public abstract Size
Measure
(double widthConstraint, double heightConstraint);
Microsoft.Maui.Controls (3)
Layout\AndExpandLayoutManager.cs (1)
18
public Size
Measure
(double widthConstraint, double heightConstraint)
Layout\StackLayoutManager.cs (1)
40
public Size
Measure
(double widthConstraint, double heightConstraint)
LegacyLayouts\Layout.cs (1)
77
Size ILayoutManager.
Measure
(double widthConstraint, double heightConstraint)
3 references to Measure
Microsoft.Maui.Controls (3)
Layout\FlexLayout.cs (1)
474
var result = layoutManager.
Measure
(widthConstraint, heightConstraint);
Layout\Layout.cs (1)
349
return LayoutManager.
Measure
(widthConstraint, heightConstraint);
Layout\StackLayoutManager.cs (1)
42
return SelectLayoutManager().
Measure
(widthConstraint, heightConstraint);