14 references to SizeAll
System.Windows.Forms (2)
System\Windows\Forms\Controls\ToolStrips\ToolStripGrip.cs (1)
188
ParentInternal.Cursor = Cursors.
SizeAll
;
System\Windows\Forms\Input\Cursors.cs (1)
46
public static Cursor SizeAll => s_sizeAll ??= new(PInvoke.IDC_SIZEALL, nameof(
SizeAll
));
System.Windows.Forms.Design (8)
System\Windows\Forms\Design\Behavior\ContainerSelectorGlyph.cs (1)
40
=> _glyphBounds.Contains(p) || _relatedBehavior?.OkToMove == true ? Cursors.
SizeAll
: null;
System\Windows\Forms\Design\Behavior\NoResizeHandleGlyph.cs (1)
30
hitTestCursor = Cursors.
SizeAll
;
System\Windows\Forms\Design\Behavior\NoResizeSelectionBorderGlyph.cs (1)
32
hitTestCursor = Cursors.
SizeAll
;
System\Windows\Forms\Design\ComponentTray.cs (1)
2407
Cursor.Current = Cursors.
SizeAll
;
System\Windows\Forms\Design\ControlDesigner.cs (2)
704
else if (cursor == Cursors.
SizeAll
)
1614
Cursor.Current = Cursors.
SizeAll
;
System\Windows\Forms\Design\SelectionUIService.ContainerSelectionUIItem.cs (1)
23
return Cursors.
SizeAll
;
System\Windows\Forms\Design\SelectionUIService.SelectionUIItem.cs (1)
208
cursor = Cursors.
SizeAll
;
System.Windows.Forms.Tests (2)
System\Windows\Forms\CursorConverterTests.cs (1)
216
Assert.Contains(Cursors.
SizeAll
, values);
System\Windows\Forms\CursorsTests.cs (1)
37
yield return new object[] { I(() => Cursors.
SizeAll
) };
WindowsFormsIntegration (2)
System\Windows\Integration\Convert.cs (2)
56
_toSystemWindowsInputCursorDictionary.Add(SWF.Cursors.
SizeAll
, SWI.Cursors.SizeAll);
96
_toSystemWindowsFormsCursorDictionary.Add(SWI.Cursors.SizeAll, SWF.Cursors.
SizeAll
);