Implemented interface member:
property
PlatformView
Microsoft.Maui.IElementHandler.PlatformView
1 write to PlatformView
Microsoft.Maui (1)
Handlers\View\ViewHandlerOfT.cs (1)
37 private protected set => base.PlatformView = value;
7 references to PlatformView
Microsoft.Maui (7)
Handlers\View\ViewHandler.cs (5)
106 /// Gets or sets a value that indicates whether the <see cref="PlatformView"/> is contained within a view. 136 /// Constructs the <see cref="ContainerView"/> and adds <see cref="PlatformView"/> to a container. 142 /// Deconstructs the <see cref="ContainerView"/> and removes <see cref="PlatformView"/> from its container. 148 /// Gets the view that acts as a container for the <see cref="PlatformView"/>. 170 /// The platform view is found in <see cref="PlatformView"/>.</remarks>
Handlers\View\ViewHandlerOfT.cs (2)
36 get => (TPlatformView?)base.PlatformView ?? throw new InvalidOperationException($"PlatformView cannot be null here"); 50 object? IElementHandler.PlatformView => base.PlatformView;