2 writes to _restoredWindowBounds
System.Windows.Forms (2)
System\Windows\Forms\Form.cs (2)
698
_restoredWindowBounds
= preClientUpdateRestoredWindowBounds;
5123
_restoredWindowBounds
= new Rectangle(-1, -1, -1, -1);
12 references to _restoredWindowBounds
System.Windows.Forms (12)
System\Windows\Forms\Form.cs (12)
680
Rectangle preClientUpdateRestoredWindowBounds =
_restoredWindowBounds
;
5112
Size restoredSize =
_restoredWindowBounds
.Size;
5118
SetBounds(
_restoredWindowBounds
.X,
_restoredWindowBounds
.Y,
5119
_formStateEx[s_formStateExWindowBoundsWidthIsClientSize] == 1 ? restoredSize.Width :
_restoredWindowBounds
.Width,
5120
_formStateEx[s_formStateExWindowBoundsHeightIsClientSize] == 1 ? restoredSize.Height :
_restoredWindowBounds
.Height,
5287
_restoredWindowBounds
.X = x;
5292
_restoredWindowBounds
.Y = y;
5297
_restoredWindowBounds
.Width = width;
5303
_restoredWindowBounds
.Height = height;
6594
_restoredWindowBounds
.Size = ClientSize;
6598
_restoredWindowBounds
.Location = Location;