Implemented interface member:
property
CrossPlatformLayout
Microsoft.Maui.ICrossPlatformLayoutBacking.CrossPlatformLayout
19 writes to CrossPlatformLayout
Microsoft.Maui (18)
Handlers\Border\BorderHandler.iOS.cs (2)
19 CrossPlatformLayout = VirtualView 38 PlatformView.CrossPlatformLayout = VirtualView;
Handlers\ContentView\ContentViewHandler.iOS.cs (3)
15 CrossPlatformLayout = VirtualView 26 PlatformView.CrossPlatformLayout = VirtualView; 57 platformView.CrossPlatformLayout = null;
Handlers\Layout\LayoutHandler.iOS.cs (2)
19 CrossPlatformLayout = VirtualView 32 PlatformView.CrossPlatformLayout = VirtualView;
Handlers\RadioButton\RadioButtonHandler.iOS.cs (1)
22 PlatformView.CrossPlatformLayout = VirtualView;
Handlers\RefreshView\RefreshViewHandler.iOS.cs (3)
18 CrossPlatformLayout = VirtualView as ICrossPlatformLayout 30 PlatformView.CrossPlatformLayout = VirtualView as ICrossPlatformLayout; 43 platformView.CrossPlatformLayout = null;
Handlers\SwipeItemView\SwipeItemViewHandler.iOS.cs (2)
12 CrossPlatformLayout = VirtualView 22 PlatformView.CrossPlatformLayout = VirtualView;
Handlers\SwipeView\SwipeViewHandler.iOS.cs (2)
7 protected override MauiSwipeView CreatePlatformView() => new() { CrossPlatformLayout = VirtualView }; 14 PlatformView.CrossPlatformLayout = VirtualView;
Platform\iOS\GeneralWrapperView.cs (1)
12CrossPlatformLayout = this;
Platform\iOS\PageViewController.cs (1)
20 CrossPlatformLayout = ((IContentView)view)
Platform\iOS\SemanticSwitchContentView.cs (1)
17 CrossPlatformLayout = virtualView;
Microsoft.Maui.Controls (1)
Compatibility\Handlers\iOS\FrameRenderer.cs (1)
63 _actualView.CrossPlatformLayout = e.NewElement;
4 references to CrossPlatformLayout
Microsoft.Maui (4)
Platform\iOS\MauiSwipeView.cs (1)
43 internal ISwipeView? Element => CrossPlatformLayout as ISwipeView;
Platform\iOS\MauiView.cs (3)
86 return CrossPlatformLayout?.CrossPlatformMeasure(widthConstraint, heightConstraint) ?? Size.Zero; 91 return CrossPlatformLayout?.CrossPlatformArrange(bounds) ?? Size.Zero; 179 if (CrossPlatformLayout is IVisualTreeElement layoutElement &&