2 implementations of GetDesiredSize
Microsoft.Maui (2)
Handlers\View\ViewHandler.cs (1)
178
public abstract Size
GetDesiredSize
(double widthConstraint, double heightConstraint);
Handlers\View\ViewHandlerOfT.Standard.cs (1)
12
public override Size
GetDesiredSize
(double widthConstraint, double heightConstraint)
4 references to GetDesiredSize
Microsoft.Maui (1)
Layouts\LayoutExtensions.cs (1)
27
var measureWithoutMargins = view.Handler.
GetDesiredSize
(widthConstraint, heightConstraint);
Microsoft.Maui.Controls (3)
IndicatorView\IndicatorView.cs (1)
138
return Handler?.
GetDesiredSize
(widthConstraint, heightConstraint) ?? new();
RadioButton\RadioButton.cs (1)
297
return Handler?.
GetDesiredSize
(widthConstraint, heightConstraint) ?? new();
VisualElement\VisualElement.cs (1)
1314
return Handler?.
GetDesiredSize
(widthConstraint, heightConstraint) ?? new();