2 writes to restoredWindowBounds
System.Windows.Forms (2)
winforms\Managed\System\WinForms\Form.cs (2)
903
restoredWindowBounds
= preClientUpdateRestoredWindowBounds;
5689
restoredWindowBounds
= new Rectangle(-1, -1, -1, -1);
12 references to restoredWindowBounds
System.Windows.Forms (12)
winforms\Managed\System\WinForms\Form.cs (12)
887
Rectangle preClientUpdateRestoredWindowBounds =
restoredWindowBounds
;
5680
Size restoredSize =
restoredWindowBounds
.Size;
5684
SetBounds(
restoredWindowBounds
.X,
restoredWindowBounds
.Y,
5685
formStateEx[FormStateExWindowBoundsWidthIsClientSize]==1 ? restoredSize.Width :
restoredWindowBounds
.Width,
5686
formStateEx[FormStateExWindowBoundsHeightIsClientSize]==1 ? restoredSize.Height :
restoredWindowBounds
.Height,
5872
restoredWindowBounds
.X = x;
5874
restoredWindowBounds
.Y = y;
5876
restoredWindowBounds
.Width = width;
5880
restoredWindowBounds
.Height = height;
6886
restoredWindowBounds
.Size = ClientSize;
6890
restoredWindowBounds
.Location = Location;