2 writes to _restoredWindowBounds
System.Windows.Forms (2)
System\Windows\Forms\Form.cs (2)
699
_restoredWindowBounds
= preClientUpdateRestoredWindowBounds;
5012
_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
;
5001
Size restoredSize =
_restoredWindowBounds
.Size;
5007
SetBounds(
_restoredWindowBounds
.X,
_restoredWindowBounds
.Y,
5008
_formStateEx[s_formStateExWindowBoundsWidthIsClientSize] == 1 ? restoredSize.Width :
_restoredWindowBounds
.Width,
5009
_formStateEx[s_formStateExWindowBoundsHeightIsClientSize] == 1 ? restoredSize.Height :
_restoredWindowBounds
.Height,
5176
_restoredWindowBounds
.X = x;
5181
_restoredWindowBounds
.Y = y;
5186
_restoredWindowBounds
.Width = width;
5192
_restoredWindowBounds
.Height = height;
6448
_restoredWindowBounds
.Size = ClientSize;
6452
_restoredWindowBounds
.Location = Location;