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