2 writes to _restoredWindowBounds
System.Windows.Forms (2)
System\Windows\Forms\Form.cs (2)
695
_restoredWindowBounds
= preClientUpdateRestoredWindowBounds;
5089
_restoredWindowBounds
= new Rectangle(-1, -1, -1, -1);
12 references to _restoredWindowBounds
System.Windows.Forms (12)
System\Windows\Forms\Form.cs (12)
677
Rectangle preClientUpdateRestoredWindowBounds =
_restoredWindowBounds
;
5078
Size restoredSize =
_restoredWindowBounds
.Size;
5084
SetBounds(
_restoredWindowBounds
.X,
_restoredWindowBounds
.Y,
5085
_formStateEx[s_formStateExWindowBoundsWidthIsClientSize] == 1 ? restoredSize.Width :
_restoredWindowBounds
.Width,
5086
_formStateEx[s_formStateExWindowBoundsHeightIsClientSize] == 1 ? restoredSize.Height :
_restoredWindowBounds
.Height,
5253
_restoredWindowBounds
.X = x;
5258
_restoredWindowBounds
.Y = y;
5263
_restoredWindowBounds
.Width = width;
5269
_restoredWindowBounds
.Height = height;
6561
_restoredWindowBounds
.Size = ClientSize;
6565
_restoredWindowBounds
.Location = Location;