1 implementation of ContainerView
Microsoft.Maui (1)
Handlers\View\ViewHandler.cs (1)
154 object? IViewHandler.ContainerView => ContainerView;
16 references to ContainerView
Microsoft.Maui (12)
Handlers\View\ViewHandler.cs (10)
35 [nameof(IViewHandler.ContainerView)] = MapContainerView, 299 ((PlatformView?)handler.ContainerView)?.UpdateVisibility(view); 346 ((PlatformView?)handler.ContainerView)?.UpdateOpacity(view); 371 handler.UpdateValue(nameof(IViewHandler.ContainerView)); 373 ((PlatformView?)handler.ContainerView)?.UpdateClip(view); 383 handler.UpdateValue(nameof(IViewHandler.ContainerView)); 385 ((PlatformView?)handler.ContainerView)?.UpdateShadow(view); 413 /// Maps the abstract <see cref="IViewHandler.ContainerView"/> property to the platform-specific implementations. 444 handler.UpdateValue(nameof(IViewHandler.ContainerView)); 446 ((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);