13 references to restoreBounds
System.Windows.Forms (13)
winforms\Managed\System\WinForms\Form.cs (13)
2206if (restoreBounds.Width == -1 2207&& restoreBounds.Height == -1 2208&& restoreBounds.X == -1 2209&& restoreBounds.Y == -1) { 2216return restoreBounds; 5887restoreBounds.X = x; 5889restoreBounds.Y = y; 5890if ((specified & BoundsSpecified.Width) != 0 || restoreBounds.Width == -1) 5891restoreBounds.Width = width; 5892if ((specified & BoundsSpecified.Height) != 0 || restoreBounds.Height == -1) 5893restoreBounds.Height = height; 6894restoreBounds.Size = Size; 6895restoreBounds.Location = Location;