1 override of SetCursor
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\ComponentTray.cs (1)
2893
public override void
SetCursor
()
4 references to SetCursor
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\OleDragDropHandler.cs (1)
1015
_selectionHandler.
SetCursor
();
System.Windows.Forms.Design.Tests (3)
System\Windows\Forms\Design\OleDragDropHandlerTests.cs (1)
169
_selectionHandlerMock.Verify(handler => handler.
SetCursor
(), Times.Never);
System\Windows\Forms\Design\SelectionUIHandlerTests.cs (2)
167
_selectionUIHandlerMock.Setup(h => h.
SetCursor
()).Callback(() => _control.Cursor = expectedCursor);
169
Action act = _selectionUIHandlerMock.Object.
SetCursor
;