13 references to _restoreBounds
System.Windows.Forms (13)
System\Windows\Forms\Form.cs (13)
1671
if (
_restoreBounds
.Width == -1
1672
&&
_restoreBounds
.Height == -1
1673
&&
_restoreBounds
.X == -1
1674
&&
_restoreBounds
.Y == -1)
1683
return
_restoreBounds
;
5206
_restoreBounds
.X = x;
5211
_restoreBounds
.Y = y;
5214
if ((specified & BoundsSpecified.Width) != 0 ||
_restoreBounds
.Width == -1)
5216
_restoreBounds
.Width = width;
5219
if ((specified & BoundsSpecified.Height) != 0 ||
_restoreBounds
.Height == -1)
5221
_restoreBounds
.Height = height;
6463
_restoreBounds
.Size = Size;
6464
_restoreBounds
.Location = Location;