13 references to _restoreBounds
System.Windows.Forms (13)
System\Windows\Forms\Form.cs (13)
1668
if (
_restoreBounds
.Width == -1
1669
&&
_restoreBounds
.Height == -1
1670
&&
_restoreBounds
.X == -1
1671
&&
_restoreBounds
.Y == -1)
1680
return
_restoreBounds
;
5297
_restoreBounds
.X = x;
5302
_restoreBounds
.Y = y;
5305
if ((specified & BoundsSpecified.Width) != 0 ||
_restoreBounds
.Width == -1)
5307
_restoreBounds
.Width = width;
5310
if ((specified & BoundsSpecified.Height) != 0 ||
_restoreBounds
.Height == -1)
5312
_restoreBounds
.Height = height;
6554
_restoreBounds
.Size = Size;
6555
_restoreBounds
.Location = Location;