2 writes to _restoredWindowBounds
System.Windows.Forms (2)
System\Windows\Forms\Form.cs (2)
696
_restoredWindowBounds
= preClientUpdateRestoredWindowBounds;
5106
_restoredWindowBounds
= new Rectangle(-1, -1, -1, -1);
12 references to _restoredWindowBounds
System.Windows.Forms (12)
System\Windows\Forms\Form.cs (12)
678
Rectangle preClientUpdateRestoredWindowBounds =
_restoredWindowBounds
;
5095
Size restoredSize =
_restoredWindowBounds
.Size;
5101
SetBounds(
_restoredWindowBounds
.X,
_restoredWindowBounds
.Y,
5102
_formStateEx[s_formStateExWindowBoundsWidthIsClientSize] == 1 ? restoredSize.Width :
_restoredWindowBounds
.Width,
5103
_formStateEx[s_formStateExWindowBoundsHeightIsClientSize] == 1 ? restoredSize.Height :
_restoredWindowBounds
.Height,
5270
_restoredWindowBounds
.X = x;
5275
_restoredWindowBounds
.Y = y;
5280
_restoredWindowBounds
.Width = width;
5286
_restoredWindowBounds
.Height = height;
6550
_restoredWindowBounds
.Size = ClientSize;
6554
_restoredWindowBounds
.Location = Location;