14 writes to bounds
System.Windows.Forms.Design (14)
System\Windows\Forms\Design\Behavior\GrabHandleGlyph.cs (8)
33
bounds
= new Rectangle(controlBounds.X + DesignerUtils.s_handleOverlap - DesignerUtils.s_handleSize, controlBounds.Y + DesignerUtils.s_handleOverlap - DesignerUtils.s_handleSize, DesignerUtils.s_handleSize, DesignerUtils.s_handleSize);
38
bounds
= new Rectangle(controlBounds.Right - DesignerUtils.s_handleOverlap, controlBounds.Y + DesignerUtils.s_handleOverlap - DesignerUtils.s_handleSize, DesignerUtils.s_handleSize, DesignerUtils.s_handleSize);
43
bounds
= new Rectangle(controlBounds.Right - DesignerUtils.s_handleOverlap, controlBounds.Bottom - DesignerUtils.s_handleOverlap, DesignerUtils.s_handleSize, DesignerUtils.s_handleSize);
48
bounds
= new Rectangle(controlBounds.X + DesignerUtils.s_handleOverlap - DesignerUtils.s_handleSize, controlBounds.Bottom - DesignerUtils.s_handleOverlap, DesignerUtils.s_handleSize, DesignerUtils.s_handleSize);
58
bounds
= new Rectangle(controlBounds.X + (controlBounds.Width / 2) - (DesignerUtils.s_handleSize / 2), controlBounds.Y + DesignerUtils.s_handleOverlap - DesignerUtils.s_handleSize, DesignerUtils.s_handleSize, DesignerUtils.s_handleSize);
70
bounds
= new Rectangle(controlBounds.X + (controlBounds.Width / 2) - (DesignerUtils.s_handleSize / 2), controlBounds.Bottom - DesignerUtils.s_handleOverlap, DesignerUtils.s_handleSize, DesignerUtils.s_handleSize);
82
bounds
= new Rectangle(controlBounds.X + DesignerUtils.s_handleOverlap - DesignerUtils.s_handleSize, controlBounds.Y + (controlBounds.Height / 2) - (DesignerUtils.s_handleSize / 2), DesignerUtils.s_handleSize, DesignerUtils.s_handleSize);
94
bounds
= new Rectangle(controlBounds.Right - DesignerUtils.s_handleOverlap, controlBounds.Y + (controlBounds.Height / 2) - (DesignerUtils.s_handleSize / 2), DesignerUtils.s_handleSize, DesignerUtils.s_handleSize);
System\Windows\Forms\Design\Behavior\LockedBorderGlyph.cs (1)
33
bounds
= DesignerUtils.GetBoundsForSelectionType(controlBounds, type);
System\Windows\Forms\Design\Behavior\LockedHandleGlyph.cs (1)
26
bounds
= new Rectangle((controlBounds.X + DesignerUtils.s_lockHandleOverlap) - DesignerUtils.s_lockHandleWidth,
System\Windows\Forms\Design\Behavior\MiniLockedBorderGlyph.cs (1)
44
bounds
= DesignerUtils.GetBoundsForSelectionType(controlBounds, type, borderSize);
System\Windows\Forms\Design\Behavior\NoResizeHandleGlyph.cs (1)
34
bounds
= new Rectangle(
System\Windows\Forms\Design\Behavior\NoResizeSelectionBorderGlyph.cs (1)
36
bounds
= DesignerUtils.GetBoundsForNoResizeSelectionType(controlBounds, type);
System\Windows\Forms\Design\Behavior\SelectionBorderGlyph.cs (1)
31
bounds
= DesignerUtils.GetBoundsForSelectionType(controlBounds, type);
15 references to bounds
System.Windows.Forms.Design (15)
System\Windows\Forms\Design\Behavior\GrabHandleGlyph.cs (2)
105
hitBounds =
bounds
;
113
DesignerUtils.DrawGrabHandle(pe.Graphics,
bounds
, _isPrimary);
System\Windows\Forms\Design\Behavior\LockedBorderGlyph.cs (2)
34
hitBounds =
bounds
;
42
DesignerUtils.DrawSelectionBorder(pe.Graphics,
bounds
);
System\Windows\Forms\Design\Behavior\LockedHandleGlyph.cs (2)
29
hitBounds =
bounds
;
37
DesignerUtils.DrawLockedHandle(pe.Graphics,
bounds
, _isPrimary);
System\Windows\Forms\Design\Behavior\MiniLockedBorderGlyph.cs (2)
45
hitBounds =
bounds
;
53
pe.Graphics.FillRectangle(new SolidBrush(SystemColors.ControlText),
bounds
);
System\Windows\Forms\Design\Behavior\NoResizeHandleGlyph.cs (2)
39
hitBounds =
bounds
;
47
DesignerUtils.DrawNoResizeHandle(pe.Graphics,
bounds
, _isPrimary);
System\Windows\Forms\Design\Behavior\NoResizeSelectionBorderGlyph.cs (2)
37
hitBounds =
bounds
;
65
DesignerUtils.DrawSelectionBorder(pe.Graphics,
bounds
);
System\Windows\Forms\Design\Behavior\SelectionBorderGlyph.cs (2)
32
hitBounds =
bounds
;
89
DesignerUtils.DrawSelectionBorder(pe.Graphics,
bounds
);
System\Windows\Forms\Design\Behavior\SelectionGlyphBase.cs (1)
60
get =>
bounds
;