25 references to DragDrop
System.Windows.Forms (6)
System\Windows\Forms\Controls\RichTextBox\RichTextBox.cs (2)
1507add => base.DragDrop += value; 1508remove => base.DragDrop -= value;
System\Windows\Forms\Controls\ToolStrips\ToolStripControlHost.cs (2)
714control.DragDrop += HandleDragDrop; 759control.DragDrop -= HandleDragDrop;
System\Windows\Forms\OLE\DragEventArgs.cs (1)
7/// Provides data for the <see cref="Control.DragDrop"/>, <see cref="Control.DragEnter"/>,
System\Windows\Forms\OLE\DragEventHandler.cs (1)
7/// Represents a method that will handle the <see cref="Control.DragDrop"/>,
System.Windows.Forms.Design (6)
System\Windows\Forms\Design\ControlDesigner.cs (4)
615rc.DragDrop += OnDragDrop; 631rc.DragDrop -= OnDragDrop; 1255control.DragDrop -= handler; 1257control.DragDrop += handler;
System\Windows\Forms\Design\ToolStripPanelDesigner.cs (1)
493nameof(ToolStripPanel.DragDrop),
System\Windows\Forms\Design\TreeNodeCollectionEditor.cs (1)
194_treeView1.DragDrop += treeView1_DragDrop;
System.Windows.Forms.Tests (2)
System\Windows\Forms\ControlTests.Handlers.cs (2)
1319control.DragDrop += handler; 1324control.DragDrop -= handler;
System.Windows.Forms.UI.IntegrationTests (2)
DragDropTests.cs (2)
367form.ListDragTarget.DragDrop += (s, e) => 620ListDragTarget.DragDrop += ListDragTarget_DragDrop;
TrimTest (1)
Form1.Designer.cs (1)
72textBox1.DragDrop += textBox1_DragDrop;
WindowsFormsIntegration (2)
System\Windows\Integration\ElementHost.cs (2)
1129add { base.DragDrop += value; } 1130remove { base.DragDrop -= value; }
WinFormsControlsTest (6)
DragDrop.cs (6)
45pictureBox1.DragDrop += PictureBox_DragDrop; 51pictureBox2.DragDrop += PictureBox_DragDrop; 57pictureBox3.DragDrop += PictureBox_DragDrop; 63pictureBox4.DragDrop += PictureBox_DragDrop; 69pictureBox5.DragDrop += PictureBox_DragDrop; 76textBox.DragDrop += TextBox_DragDrop;