19 references to All
System.Windows.Forms (5)
System\Windows\Forms\Controls\RichTextBox\RichTextBox.OleCallback.cs (5)
133DragDropEffects.All, 139DragDropEffects.All, 214? DragDropEffects.All | DragDropEffects.None 238DragDropEffects.All, 244DragDropEffects.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)
1819Action dragDrop = () => control.DoDragDrop(null, DragDropEffects.All);
System\Windows\Forms\DragDropHelperTests.cs (3)
31yield return new object[] { new DataObject(), new GiveFeedbackEventArgs(DragDropEffects.All, false, new Bitmap(1, 1), new Point(0, 0), false) }; 32yield return new object[] { new DataObject(), new GiveFeedbackEventArgs(DragDropEffects.All, false, null, new Point(0, 0), false) }; 33yield 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)
4061c.OnGiveFeedback(new GiveFeedbackEventArgs(DragDropEffects.All, false));
System\Windows\Forms\ToolStripItemTests.cs (1)
10237Assert.Throws<ArgumentNullException>("data", () => item.DoDragDrop(null, DragDropEffects.All));
System.Windows.Forms.UI.IntegrationTests (3)
DragDropTests.cs (3)
770DragDropEffects.All | DragDropEffects.Link); 1090dragAcceptItem.DoDragDrop(data, DragDropEffects.All, _dragAcceptBmp, new Point(0, 16), false); 1150PictureBoxDragSource.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);