2 overrides of DefaultCursor
System.Windows.Forms (2)
winforms\Managed\System\WinForms\Splitter.cs (1)
118protected override Cursor DefaultCursor {
winforms\Managed\System\WinForms\TextBoxBase.cs (1)
559protected override Cursor DefaultCursor {
4 references to DefaultCursor
System.Windows.Forms (4)
winforms\Managed\System\WinForms\ComboBox.cs (1)
1947if (Cursor != DefaultCursor && childEdit != null && m.HWnd == childEdit.Handle && NativeMethods.Util.LOWORD(m.LParam) == NativeMethods.HTCLIENT) {
winforms\Managed\System\WinForms\Control.cs (1)
2053Cursor localDefault = DefaultCursor;
winforms\Managed\System\WinForms\SplitContainer.cs (1)
1257if (Cursor == DefaultCursor && SplitterRectangle.Contains(e.Location))
winforms\Managed\System\WinForms\Splitter.cs (1)
128return base.DefaultCursor;