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