13 references to _restoreBounds
System.Windows.Forms (13)
System\Windows\Forms\Form.cs (13)
1665
if (
_restoreBounds
.Width == -1
1666
&&
_restoreBounds
.Height == -1
1667
&&
_restoreBounds
.X == -1
1668
&&
_restoreBounds
.Y == -1)
1677
return
_restoreBounds
;
5294
_restoreBounds
.X = x;
5299
_restoreBounds
.Y = y;
5302
if ((specified & BoundsSpecified.Width) != 0 ||
_restoreBounds
.Width == -1)
5304
_restoreBounds
.Width = width;
5307
if ((specified & BoundsSpecified.Height) != 0 ||
_restoreBounds
.Height == -1)
5309
_restoreBounds
.Height = height;
6559
_restoreBounds
.Size = Size;
6560
_restoreBounds
.Location = Location;