2 writes to _restoredWindowBounds
System.Windows.Forms (2)
System\Windows\Forms\Form.cs (2)
696
_restoredWindowBounds
= preClientUpdateRestoredWindowBounds;
5109
_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
;
5098
Size restoredSize =
_restoredWindowBounds
.Size;
5104
SetBounds(
_restoredWindowBounds
.X,
_restoredWindowBounds
.Y,
5105
_formStateEx[s_formStateExWindowBoundsWidthIsClientSize] == 1 ? restoredSize.Width :
_restoredWindowBounds
.Width,
5106
_formStateEx[s_formStateExWindowBoundsHeightIsClientSize] == 1 ? restoredSize.Height :
_restoredWindowBounds
.Height,
5273
_restoredWindowBounds
.X = x;
5278
_restoredWindowBounds
.Y = y;
5283
_restoredWindowBounds
.Width = width;
5289
_restoredWindowBounds
.Height = height;
6545
_restoredWindowBounds
.Size = ClientSize;
6549
_restoredWindowBounds
.Location = Location;