19 references to All
System.Windows.Forms (5)
System\Windows\Forms\Controls\RichTextBox\RichTextBox.OleCallback.cs (5)
134
DragDropEffects.
All
,
140
DragDropEffects.
All
,
212
? DragDropEffects.
All
| DragDropEffects.None
235
DragDropEffects.
All
,
241
DragDropEffects.
All
,
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\ToolStripItemBehavior.cs (1)
619
DropSource.DoDragDrop(data, DragDropEffects.
All
);
System.Windows.Forms.Tests (6)
System\Windows\Forms\ControlTests.Methods.cs (1)
1859
Assert.Throws<ArgumentNullException>("data", () => control.DoDragDrop(null, DragDropEffects.
All
));
System\Windows\Forms\DragDropHelperTests.cs (3)
25
yield return new object[] { new DataObject(), new GiveFeedbackEventArgs(DragDropEffects.
All
, false, new Bitmap(1, 1), new Point(0, 0), false) };
26
yield return new object[] { new DataObject(), new GiveFeedbackEventArgs(DragDropEffects.
All
, false, null, new Point(0, 0), false) };
27
yield return new object[] { new DataObject(), new GiveFeedbackEventArgs(DragDropEffects.
All
, false, new Bitmap(1, 1), new Point(0, 0), true) };
System\Windows\Forms\ToolStripControlHostTests.cs (1)
4059
c.OnGiveFeedback(new GiveFeedbackEventArgs(DragDropEffects.
All
, false));
System\Windows\Forms\ToolStripItemTests.cs (1)
10235
Assert.Throws<ArgumentNullException>("data", () => item.DoDragDrop(null, DragDropEffects.
All
));
System.Windows.Forms.UI.IntegrationTests (3)
DragDropTests.cs (3)
711
DragDropEffects.
All
| DragDropEffects.Link);
1031
dragAcceptItem.DoDragDrop(data, DragDropEffects.
All
, _dragAcceptBmp, new Point(0, 16), false);
1091
PictureBoxDragSource.DoDragDrop(data, DragDropEffects.
All
, _dragImage, new Point(0, 16), false);
WinFormsControlsTest (4)
DragDrop.cs (4)
183
pictureBox.DoDragDrop(data, DragDropEffects.
All
, _nyanCatBmp, new Point(0, 96), true);
546
toolStripItem.DoDragDrop(data, DragDropEffects.
All
, _dragAcceptBmp, new Point(0, 96), true);
558
toolStripItem.DoDragDrop(data, DragDropEffects.
All
, _nyanCatBmp, new Point(0, 96), true);
570
toolStripItem.DoDragDrop(data, DragDropEffects.
All
, _nyanCatAscii301Bmp, new Point(0, 111), false);