11 references to DrawGrabHandle
System.Windows.Forms.Design (8)
System\Windows\Forms\Design\SelectionUIService.SelectionUIItem.cs (8)
155ControlPaint.DrawGrabHandle(graphics, rect, fActive, (_sizes[0] != 0)); 158ControlPaint.DrawGrabHandle(graphics, rect, fActive, _sizes[2] != 0); 161ControlPaint.DrawGrabHandle(graphics, rect, fActive, _sizes[7] != 0); 164ControlPaint.DrawGrabHandle(graphics, rect, fActive, _sizes[5] != 0); 167ControlPaint.DrawGrabHandle(graphics, rect, fActive, _sizes[6] != 0); 170ControlPaint.DrawGrabHandle(graphics, rect, fActive, _sizes[1] != 0); 174ControlPaint.DrawGrabHandle(graphics, rect, fActive, _sizes[3] != 0); 177ControlPaint.DrawGrabHandle(graphics, rect, fActive, _sizes[4] != 0);
System.Windows.Forms.Tests (3)
System\Windows\Forms\ControlPaintTests.cs (3)
1245ControlPaint.DrawGrabHandle(graphics, rectangle, primary, enabled); 1248ControlPaint.DrawGrabHandle(graphics, rectangle, primary, enabled); 1258Assert.Throws<ArgumentNullException>("graphics", () => ControlPaint.DrawGrabHandle(null, new Rectangle(1, 2, 3, 4), primary, enabled));