8 references to MaximumSize
System.Windows.Forms (8)
winforms\Managed\System\WinForms\ToolStripPanelCell.cs (8)
149if (MaximumSize.Height >= Control.PreferredSize.Height) { 157if (MaximumSize.Height + growBy >= Control.PreferredSize.Height) { 158int freed = Control.PreferredSize.Height - MaximumSize.Height; 166if (MaximumSize.Height + growBy < Control.PreferredSize.Height) { 179if (MaximumSize.Width >= Control.PreferredSize.Width) { 187if (MaximumSize.Width + growBy >= Control.PreferredSize.Width) { 188int freed = Control.PreferredSize.Width - MaximumSize.Width; 196if (MaximumSize.Width + growBy < Control.PreferredSize.Width) {