1 override of BeginDrag
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\ComponentTray.cs (1)
2817public override bool BeginDrag(object[] components, SelectionRules rules, int initialX, int initialY)
5 references to BeginDrag
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\ComponentTray.cs (2)
560bool result = DragHandler.BeginDrag(components, rules, initialX, initialY); 2819bool value = base.BeginDrag(components, rules, initialX, initialY);
System.Windows.Forms.Design.Tests (3)
System\Windows\Forms\Design\SelectionUIHandlerTests.cs (3)
47bool result = _selectionUIHandlerMock.Object.BeginDrag(components, SelectionRules.Moveable, 0, 0); 65_selectionUIHandlerMock.Object.BeginDrag(components, SelectionRules.Moveable, 0, 0); 80_selectionUIHandlerMock.Object.BeginDrag(components, SelectionRules.Moveable, 0, 0);