14 references to SizeAll
System.Windows.Forms (2)
System\Windows\Forms\Controls\ToolStrips\ToolStripGrip.cs (1)
188ParentInternal.Cursor = Cursors.SizeAll;
System\Windows\Forms\Input\Cursors.cs (1)
46public 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)
30hitTestCursor = Cursors.SizeAll;
System\Windows\Forms\Design\Behavior\NoResizeSelectionBorderGlyph.cs (1)
32hitTestCursor = Cursors.SizeAll;
System\Windows\Forms\Design\ComponentTray.cs (1)
2407Cursor.Current = Cursors.SizeAll;
System\Windows\Forms\Design\ControlDesigner.cs (2)
704else if (cursor == Cursors.SizeAll) 1614Cursor.Current = Cursors.SizeAll;
System\Windows\Forms\Design\SelectionUIService.ContainerSelectionUIItem.cs (1)
23return Cursors.SizeAll;
System\Windows\Forms\Design\SelectionUIService.SelectionUIItem.cs (1)
208cursor = Cursors.SizeAll;
System.Windows.Forms.Tests (2)
System\Windows\Forms\CursorConverterTests.cs (1)
217Assert.Contains(Cursors.SizeAll, values);
System\Windows\Forms\CursorsTests.cs (1)
37yield 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);