13 references to _restoreBounds
System.Windows.Forms (13)
System\Windows\Forms\Form.cs (13)
1664
if (
_restoreBounds
.Width == -1
1665
&&
_restoreBounds
.Height == -1
1666
&&
_restoreBounds
.X == -1
1667
&&
_restoreBounds
.Y == -1)
1676
return
_restoreBounds
;
5277
_restoreBounds
.X = x;
5282
_restoreBounds
.Y = y;
5285
if ((specified & BoundsSpecified.Width) != 0 ||
_restoreBounds
.Width == -1)
5287
_restoreBounds
.Width = width;
5290
if ((specified & BoundsSpecified.Height) != 0 ||
_restoreBounds
.Height == -1)
5292
_restoreBounds
.Height = height;
6570
_restoreBounds
.Size = Size;
6571
_restoreBounds
.Location = Location;