8 writes to AutoScrollMinSize
System.Windows.Forms (8)
winforms\Managed\System\WinForms\Printing\PrintPreviewDialog.cs (1)
882base.AutoScrollMinSize = value;
winforms\Managed\System\WinForms\ScrollableControl.cs (1)
1028 AutoScrollMinSize = Size.Empty;
winforms\Managed\System\WinForms\SplitContainer.cs (1)
227base.AutoScrollMinSize = value;
winforms\Managed\System\WinForms\ToolStrip.cs (1)
330base.AutoScrollMinSize = value;
winforms\Managed\System\WinForms\ToolStripContainer.cs (1)
96set { base.AutoScrollMinSize = value; }
winforms\Managed\System\WinForms\ToolStripContentPanel.cs (1)
95set { base.AutoScrollMinSize = value; }
winforms\Managed\System\WinForms\ToolStripPanel.cs (1)
137set { base.AutoScrollMinSize = value; }
winforms\Managed\System\WinForms\UpDownBase.cs (1)
161base.AutoScrollMinSize = value;
13 references to AutoScrollMinSize
System.Windows.Forms (13)
winforms\Managed\System\WinForms\Printing\PrintPreviewDialog.cs (1)
879return base.AutoScrollMinSize;
winforms\Managed\System\WinForms\ScrollableControl.cs (6)
287if(AutoScrollMinSize.Width != 0 && AutoScrollMinSize.Height != 0) { 288displayRectangle.Width = Math.Max(displayRectangle.Width, AutoScrollMinSize.Width); 289displayRectangle.Height = Math.Max(displayRectangle.Height, AutoScrollMinSize.Height); 1209/// Indicates whether the <see cref='System.Windows.Forms.ScrollableControl.AutoScrollMinSize'/> 1214return !AutoScrollMinSize.Equals(new Size(0,0));
winforms\Managed\System\WinForms\SplitContainer.cs (1)
224return base.AutoScrollMinSize;
winforms\Managed\System\WinForms\ToolStrip.cs (1)
327return base.AutoScrollMinSize;
winforms\Managed\System\WinForms\ToolStripContainer.cs (1)
95get { return base.AutoScrollMinSize; }
winforms\Managed\System\WinForms\ToolStripContentPanel.cs (1)
94get { return base.AutoScrollMinSize; }
winforms\Managed\System\WinForms\ToolStripPanel.cs (1)
136get { return base.AutoScrollMinSize; }
winforms\Managed\System\WinForms\UpDownBase.cs (1)
158return base.AutoScrollMinSize;