8 writes to AutoScrollMinSize
System.Windows.Forms (8)
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (1)
245set => base.AutoScrollMinSize = value;
System\Windows\Forms\Controls\ToolStrips\ToolStripContainer.cs (1)
81set => base.AutoScrollMinSize = value;
System\Windows\Forms\Controls\ToolStrips\ToolStripContentPanel.cs (1)
80set => base.AutoScrollMinSize = value;
System\Windows\Forms\Controls\ToolStrips\ToolStripPanel.cs (1)
95set => base.AutoScrollMinSize = value;
System\Windows\Forms\Controls\UpDown\UpDownBase.cs (1)
99set => base.AutoScrollMinSize = value;
System\Windows\Forms\Layout\Containers\SplitContainer.cs (1)
149set => base.AutoScrollMinSize = value;
System\Windows\Forms\Printing\PrintPreviewDialog.cs (1)
510set => base.AutoScrollMinSize = value;
System\Windows\Forms\Scrolling\ScrollableControl.cs (1)
929private void ResetAutoScrollMinSize() => AutoScrollMinSize = Size.Empty;
14 references to AutoScrollMinSize
System.Windows.Forms (13)
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (1)
244get => base.AutoScrollMinSize;
System\Windows\Forms\Controls\ToolStrips\ToolStripContainer.cs (1)
80get => base.AutoScrollMinSize;
System\Windows\Forms\Controls\ToolStrips\ToolStripContentPanel.cs (1)
79get => base.AutoScrollMinSize;
System\Windows\Forms\Controls\ToolStrips\ToolStripPanel.cs (1)
94get => base.AutoScrollMinSize;
System\Windows\Forms\Controls\UpDown\UpDownBase.cs (1)
98get => base.AutoScrollMinSize;
System\Windows\Forms\Layout\Containers\SplitContainer.cs (1)
148get => base.AutoScrollMinSize;
System\Windows\Forms\Printing\PrintPreviewDialog.cs (1)
509get => base.AutoScrollMinSize;
System\Windows\Forms\Scrolling\ScrollableControl.cs (6)
219if (AutoScrollMinSize.Width != 0 && AutoScrollMinSize.Height != 0) 221displayRectangle.Width = Math.Max(displayRectangle.Width, AutoScrollMinSize.Width); 222displayRectangle.Height = Math.Max(displayRectangle.Height, AutoScrollMinSize.Height); 1126/// Indicates whether the <see cref="AutoScrollMinSize"/> 1129private bool ShouldSerializeAutoScrollMinSize() => !AutoScrollMinSize.Equals(Size.Empty);
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\PropertyGridDesigner.cs (1)
15properties.Remove(nameof(PropertyGrid.AutoScrollMinSize));