3 implementations of IsDropOk
System.Windows.Forms.Design (3)
System\Windows\Forms\Design\ComponentTray.cs (1)
538bool IOleDragClient.IsDropOk(IComponent component) => true;
System\Windows\Forms\Design\CompositionDesigner.cs (1)
52bool IOleDragClient.IsDropOk(IComponent component)
System\Windows\Forms\Design\ParentControlDesigner.cs (1)
2470bool IOleDragClient.IsDropOk(IComponent component)
4 references to IsDropOk
System.Windows.Forms.Design (4)
System\Windows\Forms\Design\OleDragDropHandler.cs (2)
83dropOk = dropOk && (dragObjects[i] is IComponent component) && Destination.IsDropOk(component); 108if (o is IComponent component && !Destination.IsDropOk(component))
System\Windows\Forms\Design\ParentControlDesigner.cs (2)
1562if (!((IOleDragClient)this).IsDropOk(comp)) 2350if (!((IOleDragClient)this).IsDropOk(component))