1 write to PictureBoxDragSource
System.Windows.Forms.UI.IntegrationTests (1)
DragDropTests.cs (1)
962
PictureBoxDragSource
= new PictureBox();
10 references to PictureBoxDragSource
System.Windows.Forms.UI.IntegrationTests (10)
DragDropTests.cs (10)
431
Point startCoordinates = form.
PictureBoxDragSource
.PointToScreen(new Point(20, 20));
968
PictureBoxDragSource
.AllowDrop = true;
969
PictureBoxDragSource
.BorderStyle = BorderStyle.FixedSingle;
970
PictureBoxDragSource
.Location = new Point(10, 45);
971
PictureBoxDragSource
.Size = new Size(125, 119);
972
PictureBoxDragSource
.DragEnter += PictureBoxDragSource_DragEnter;
973
PictureBoxDragSource
.DragOver += PictureBoxDragSource_DragOver;
974
PictureBoxDragSource
.MouseDown += PictureBoxDragSource_MouseDown;
991
PictureBoxDragSource
,
1150
PictureBoxDragSource
.DoDragDrop(data, DragDropEffects.All, _dragImage, new Point(0, 16), false);