3 implementations of ISupportOleDropSource
System.Windows.Forms (3)
System\Windows\Forms\Control.cs (1)
42ISupportOleDropSource,
System\Windows\Forms\Controls\ToolStrips\ToolStripItem.cs (1)
25ISupportOleDropSource,
System\Windows\Forms\Controls\ToolStrips\ToolStripSplitStackDragDropHandler.cs (1)
12internal sealed partial class ToolStripSplitStackDragDropHandler : IDropTarget, ISupportOleDropSource
7 references to ISupportOleDropSource
System.Windows.Forms (7)
System\Windows\Forms\Control.cs (2)
12682void ISupportOleDropSource.OnGiveFeedback(GiveFeedbackEventArgs giveFeedbackEventArgs) => OnGiveFeedback(giveFeedbackEventArgs); 12684void ISupportOleDropSource.OnQueryContinueDrag(QueryContinueDragEventArgs queryContinueDragEventArgs) => OnQueryContinueDrag(queryContinueDragEventArgs);
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (1)
1136internal ISupportOleDropSource? ItemReorderDropSource { get; set; }
System\Windows\Forms\Controls\ToolStrips\ToolStripItem.cs (2)
2662void ISupportOleDropSource.OnGiveFeedback(GiveFeedbackEventArgs giveFeedbackEventArgs) 2665void ISupportOleDropSource.OnQueryContinueDrag(QueryContinueDragEventArgs queryContinueDragEventArgs)
System\Windows\Forms\OLE\DropSource.cs (2)
14private readonly ISupportOleDropSource _peer; 20public DropSource(ISupportOleDropSource peer, IComDataObject dataObject, Bitmap? dragImage, Point cursorOffset, bool useDefaultDragImage)