3 implementations of ISupportOleDropSource
System.Windows.Forms (3)
System\Windows\Forms\Control.cs (1)
41ISupportOleDropSource,
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)
12707void ISupportOleDropSource.OnGiveFeedback(GiveFeedbackEventArgs giveFeedbackEventArgs) => OnGiveFeedback(giveFeedbackEventArgs); 12709void ISupportOleDropSource.OnQueryContinueDrag(QueryContinueDragEventArgs queryContinueDragEventArgs) => OnQueryContinueDrag(queryContinueDragEventArgs);
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (1)
1133internal ISupportOleDropSource? ItemReorderDropSource { get; set; }
System\Windows\Forms\Controls\ToolStrips\ToolStripItem.cs (2)
2656void ISupportOleDropSource.OnGiveFeedback(GiveFeedbackEventArgs giveFeedbackEventArgs) 2659void ISupportOleDropSource.OnQueryContinueDrag(QueryContinueDragEventArgs queryContinueDragEventArgs)
System\Windows\Forms\OLE\DropSource.cs (2)
14private readonly ISupportOleDropSource _peer; 20public DropSource(ISupportOleDropSource peer, IComVisibleDataObject dataObject, Bitmap? dragImage, Point cursorOffset, bool useDefaultDragImage)