1 write to PictureBoxDragSource
System.Windows.Forms.UI.IntegrationTests (1)
DragDropTests.cs (1)
903
PictureBoxDragSource
= new PictureBox();
10 references to PictureBoxDragSource
System.Windows.Forms.UI.IntegrationTests (10)
DragDropTests.cs (10)
427
Point startCoordinates = form.
PictureBoxDragSource
.PointToScreen(new Point(20, 20));
909
PictureBoxDragSource
.AllowDrop = true;
910
PictureBoxDragSource
.BorderStyle = BorderStyle.FixedSingle;
911
PictureBoxDragSource
.Location = new Point(10, 45);
912
PictureBoxDragSource
.Size = new Size(125, 119);
913
PictureBoxDragSource
.DragEnter += PictureBoxDragSource_DragEnter;
914
PictureBoxDragSource
.DragOver += PictureBoxDragSource_DragOver;
915
PictureBoxDragSource
.MouseDown += PictureBoxDragSource_MouseDown;
932
PictureBoxDragSource
,
1091
PictureBoxDragSource
.DoDragDrop(data, DragDropEffects.All, _dragImage, new Point(0, 16), false);