2 writes to _restoredWindowBounds
System.Windows.Forms (2)
System\Windows\Forms\Form.cs (2)
699
_restoredWindowBounds
= preClientUpdateRestoredWindowBounds;
5015
_restoredWindowBounds
= new Rectangle(-1, -1, -1, -1);
12 references to _restoredWindowBounds
System.Windows.Forms (12)
System\Windows\Forms\Form.cs (12)
681
Rectangle preClientUpdateRestoredWindowBounds =
_restoredWindowBounds
;
5004
Size restoredSize =
_restoredWindowBounds
.Size;
5010
SetBounds(
_restoredWindowBounds
.X,
_restoredWindowBounds
.Y,
5011
_formStateEx[s_formStateExWindowBoundsWidthIsClientSize] == 1 ? restoredSize.Width :
_restoredWindowBounds
.Width,
5012
_formStateEx[s_formStateExWindowBoundsHeightIsClientSize] == 1 ? restoredSize.Height :
_restoredWindowBounds
.Height,
5182
_restoredWindowBounds
.X = x;
5187
_restoredWindowBounds
.Y = y;
5192
_restoredWindowBounds
.Width = width;
5198
_restoredWindowBounds
.Height = height;
6454
_restoredWindowBounds
.Size = ClientSize;
6458
_restoredWindowBounds
.Location = Location;