2 writes to _dragAndDropDelegate
Microsoft.Maui.Controls.Compatibility (2)
iOS\EventTracker.cs (2)
617 _dragAndDropDelegate = _dragAndDropDelegate ?? new DragAndDropDelegate(); 629 _dragAndDropDelegate = _dragAndDropDelegate ?? new DragAndDropDelegate();
7 references to _dragAndDropDelegate
Microsoft.Maui.Controls.Compatibility (7)
iOS\EventTracker.cs (7)
579 if (_dragAndDropDelegate != null) 584 if (interaction is UIDragInteraction uIDrag && uIDrag.Delegate == _dragAndDropDelegate) 587 if (interaction is UIDropInteraction uiDrop && uiDrop.Delegate == _dragAndDropDelegate) 617 _dragAndDropDelegate = _dragAndDropDelegate ?? new DragAndDropDelegate(); 620 var interaction = new UIDragInteraction(_dragAndDropDelegate); 629 _dragAndDropDelegate = _dragAndDropDelegate ?? new DragAndDropDelegate(); 632 var interaction = new UIDropInteraction(_dragAndDropDelegate);