1 implementation of ContainerView
Microsoft.Maui (1)
Handlers\View\ViewHandler.cs (1)
153
object? IViewHandler.
ContainerView
=> ContainerView;
16 references to ContainerView
Microsoft.Maui (12)
Handlers\View\ViewHandler.cs (10)
59
[nameof(IViewHandler.
ContainerView
)] = MapContainerView,
298
((PlatformView?)handler.
ContainerView
)?.UpdateVisibility(view);
345
((PlatformView?)handler.
ContainerView
)?.UpdateOpacity(view);
370
handler.UpdateValue(nameof(IViewHandler.
ContainerView
));
372
((PlatformView?)handler.
ContainerView
)?.UpdateClip(view);
382
handler.UpdateValue(nameof(IViewHandler.
ContainerView
));
384
((PlatformView?)handler.
ContainerView
)?.UpdateShadow(view);
412
/// Maps the abstract <see cref="IViewHandler.
ContainerView
"/> property to the platform-specific implementations.
443
handler.UpdateValue(nameof(IViewHandler.
ContainerView
));
445
((PlatformView?)handler.
ContainerView
)?.UpdateBorder(view);
Platform\ElementExtensions.cs (1)
114
if (viewHandler.
ContainerView
is PlatformView containerView)
Platform\ViewExtensions.cs (1)
123
return pvh.PlatformView == platformView || pvh.
ContainerView
== platformView;
Microsoft.Maui.Controls (4)
Platform\GestureManager\GestureManager.cs (2)
68
if (_containerView != handler.
ContainerView
||
81
_containerView = handler.
ContainerView
;
Platform\PlatformEffect.cs (1)
25
Container = (PlatformView)(vh.
ContainerView
?? vh.PlatformView);
VisualElement\VisualElement.Mapper.cs (1)
32
viewMapper.AppendToMapping<VisualElement, IViewHandler>(nameof(IViewHandler.
ContainerView
), MapContainerView);