1 instantiation of PlatformTouchGraphicsView
Microsoft.Maui (1)
Handlers\GraphicsView\GraphicsViewHandler.iOS.cs (1)
10
return new
PlatformTouchGraphicsView
();
11 references to PlatformTouchGraphicsView
Microsoft.Maui (11)
Handlers\GraphicsView\GraphicsViewHandler.cs (4)
4
using PlatformView = Microsoft.Maui.Platform.
PlatformTouchGraphicsView
;
40
PlatformView
IGraphicsViewHandler.PlatformView => PlatformView;
42
protected override void ConnectHandler(
PlatformView
platformView)
49
protected override void DisconnectHandler(
PlatformView
platformView)
Handlers\GraphicsView\GraphicsViewHandler.iOS.cs (2)
6
public partial class GraphicsViewHandler : ViewHandler<IGraphicsView,
PlatformTouchGraphicsView
>
8
protected override
PlatformTouchGraphicsView
CreatePlatformView()
Handlers\GraphicsView\IGraphicsViewHandler.cs (2)
2
using PlatformView = Microsoft.Maui.Platform.
PlatformTouchGraphicsView
;
12
new
PlatformView
PlatformView { get; }
Platform\iOS\PlatformTouchGraphicsView.cs (3)
84
readonly WeakReference<
PlatformTouchGraphicsView
> _platformView;
86
public UIHoverGestureRecognizerProxy(
PlatformTouchGraphicsView
platformView) => _platformView = new(platformView);
90
if (!_platformView.TryGetTarget(out
var
platformView))