2 interfaces inheriting from ICrossPlatformLayout
Microsoft.Maui (2)
Core\IContentView.cs (1)
8 public interface IContentView : IView, IPadding, ICrossPlatformLayout
Core\ILayout.cs (1)
9 public interface ILayout : IView, IContainer, ISafeAreaView, IPadding, ICrossPlatformLayout
19 references to ICrossPlatformLayout
Microsoft.Maui (5)
Core\IContentView.cs (2)
33 Size ICrossPlatformLayout.CrossPlatformArrange(Microsoft.Maui.Graphics.Rect bounds) => CrossPlatformArrange(bounds); 34 Size ICrossPlatformLayout.CrossPlatformMeasure(double widthConstraint, double heightConstraint) => CrossPlatformMeasure(widthConstraint, heightConstraint);
Core\ICrossPlatformLayoutBacking.cs (1)
16 public ICrossPlatformLayout? CrossPlatformLayout { get; set; }
Core\ILayout.cs (2)
29 Size ICrossPlatformLayout.CrossPlatformArrange(Microsoft.Maui.Graphics.Rect bounds) => CrossPlatformArrange(bounds); 30 Size ICrossPlatformLayout.CrossPlatformMeasure(double widthConstraint, double heightConstraint) => CrossPlatformMeasure(widthConstraint, heightConstraint);
Microsoft.Maui.Controls (14)
ContentPage\ContentPage.cs (4)
94 Size ICrossPlatformLayout.CrossPlatformMeasure(double widthConstraint, double heightConstraint) 100 Size ICrossPlatformLayout.CrossPlatformArrange(Rect bounds) 145 return (this as ICrossPlatformLayout).CrossPlatformArrange(bounds); 150 return (this as ICrossPlatformLayout).CrossPlatformMeasure(widthConstraint, heightConstraint);
ContentPresenter.cs (2)
116 Size ICrossPlatformLayout.CrossPlatformMeasure(double widthConstraint, double heightConstraint) 128 Size ICrossPlatformLayout.CrossPlatformArrange(Rect bounds)
Frame\Frame.cs (2)
112 Size ICrossPlatformLayout.CrossPlatformArrange(Graphics.Rect bounds) 122 Size ICrossPlatformLayout.CrossPlatformMeasure(double widthConstraint, double heightConstraint)
LegacyLayouts\Layout.cs (2)
740 /// <inheritdoc cref="ICrossPlatformLayout.CrossPlatformMeasure(double, double)" /> 748 /// <inheritdoc cref="ICrossPlatformLayout.CrossPlatformArrange(Rect)" />
ScrollView\ScrollView.cs (2)
434 Size ICrossPlatformLayout.CrossPlatformMeasure(double widthConstraint, double heightConstraint) 470 Size ICrossPlatformLayout.CrossPlatformArrange(Rect bounds)
TemplatedView\TemplatedView.cs (2)
135 Size ICrossPlatformLayout.CrossPlatformMeasure(double widthConstraint, double heightConstraint) 147 Size ICrossPlatformLayout.CrossPlatformArrange(Rect bounds)