1 write to Destination
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\OleDragDropHandler.cs (1)
45
Destination
= client;
20 references to Destination
System.Windows.Forms.Design (20)
System\Windows\Forms\Design\OleDragDropHandler.cs (19)
83
dropOk = dropOk && (dragObjects[i] is IComponent component) &&
Destination
.IsDropOk(component);
108
if (o is IComponent component && !
Destination
.IsDropOk(component))
325
Control parentControl =
Destination
.GetDesignerControl();
340
Control comp =
Destination
.GetControlForComponent(comps[i])!;
457
Control c =
Destination
.GetDesignerControl();
505
AddCurrentDrag(data,
Destination
.Component);
682
bool newContainer = dragOwner is null ||
Destination
.Component is null || dragOwner.Site!.Container !=
Destination
.Component.Site!.Container;
754
oldDesignerControl =
Destination
.GetDesignerControl();
758
Point dropPt =
Destination
.GetDesignerControl().PointToClient(new Point(de.X, de.Y));
774
if (!
Destination
.AddComponent(comp, name!, false))
784
if (
Destination
.GetControlForComponent(comp) is null)
792
if (
Destination
is ParentControlDesigner parentDesigner)
794
Control c =
Destination
.GetControlForComponent(comp)!;
872
if (!
Destination
.CanModifyComponents)
899
&&
Destination
.CanModifyComponents)
956
&&
Destination
.CanModifyComponents;
965
Point convertedPoint =
Destination
.GetDesignerControl().PointToClient(new Point(de.X, de.Y));
971
if (!
Destination
.GetDesignerControl().ClientRectangle.Contains(convertedPoint))
System\Windows\Forms\Design\ParentControlDesigner.cs (1)
1403
IOleDragClient target = ddh.
Destination
;