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