15 overrides of AutoSize
System.Windows.Forms (15)
winforms\Managed\System\WinForms\ButtonBase.cs (1)
124public override bool AutoSize {
winforms\Managed\System\WinForms\DataGridView.cs (1)
1072public override bool AutoSize
winforms\Managed\System\WinForms\Form.cs (1)
657public override bool AutoSize {
winforms\Managed\System\WinForms\GroupBox.cs (1)
89public override bool AutoSize
winforms\Managed\System\WinForms\Label.cs (1)
138public override bool AutoSize {
winforms\Managed\System\WinForms\Panel.cs (1)
61public override bool AutoSize
winforms\Managed\System\WinForms\ScrollBar.cs (1)
81public override bool AutoSize
winforms\Managed\System\WinForms\SplitContainer.cs (1)
272public override bool AutoSize
winforms\Managed\System\WinForms\TextBoxBase.cs (1)
257public override bool AutoSize {
winforms\Managed\System\WinForms\ToolBar.cs (1)
192public override bool AutoSize {
winforms\Managed\System\WinForms\ToolStrip.cs (1)
258public override bool AutoSize {
winforms\Managed\System\WinForms\ToolStripPanel.cs (1)
146public override bool AutoSize {
winforms\Managed\System\WinForms\TrackBar.cs (1)
96public override bool AutoSize {
winforms\Managed\System\WinForms\UpDownBase.cs (1)
171public override bool AutoSize
winforms\Managed\System\WinForms\UserControl.cs (1)
60public override bool AutoSize
14 writes to AutoSize
System.Windows.Forms (14)
winforms\Managed\System\WinForms\ButtonBase.cs (1)
129base.AutoSize = value;
winforms\Managed\System\WinForms\DataGridView.cs (1)
1080base.AutoSize = value;
winforms\Managed\System\WinForms\GroupBox.cs (1)
97base.AutoSize = value;
winforms\Managed\System\WinForms\Label.cs (1)
144base.AutoSize = value;
winforms\Managed\System\WinForms\Panel.cs (1)
69base.AutoSize = value;
winforms\Managed\System\WinForms\PictureBox.cs (2)
973this.AutoSize = true; 977this.AutoSize = false;
winforms\Managed\System\WinForms\PropertyGridInternal\GridErrorDlg.cs (1)
186this.pictureBox.AutoSize = true;
winforms\Managed\System\WinForms\ScrollBar.cs (1)
89base.AutoSize = value;
winforms\Managed\System\WinForms\SplitContainer.cs (1)
280base.AutoSize = value;
winforms\Managed\System\WinForms\ToolStrip.cs (1)
272base.AutoSize = value;
winforms\Managed\System\WinForms\ToolStripPanel.cs (1)
151base.AutoSize = value;
winforms\Managed\System\WinForms\UpDownBase.cs (1)
179base.AutoSize = value;
winforms\Managed\System\WinForms\UserControl.cs (1)
68base.AutoSize = value;
17 references to AutoSize
System.Windows.Forms (17)
winforms\Managed\System\WinForms\ButtonBase.cs (1)
126return base.AutoSize;
winforms\Managed\System\WinForms\Control.cs (2)
953if(value != AutoSize) { 4336LayoutTransaction.DoLayoutIf(AutoSize, ParentInternal, this, PropertyNames.UseCompatibleTextRendering);
winforms\Managed\System\WinForms\ControlPaint.cs (1)
2748if( ctl.AutoSize ) {
winforms\Managed\System\WinForms\GroupBox.cs (1)
93return base.AutoSize;
winforms\Managed\System\WinForms\Label.cs (1)
140return base.AutoSize;
winforms\Managed\System\WinForms\ListBox.cs (1)
451LayoutTransaction.DoLayoutIf(AutoSize, this.ParentInternal, this, PropertyNames.DrawMode);
winforms\Managed\System\WinForms\Panel.cs (1)
65return base.AutoSize;
winforms\Managed\System\WinForms\PictureBox.cs (1)
525LayoutTransaction.DoLayoutIf(AutoSize, this, this, PropertyNames.Image);
winforms\Managed\System\WinForms\ScrollBar.cs (1)
85return base.AutoSize;
winforms\Managed\System\WinForms\SplitContainer.cs (1)
276return base.AutoSize;
winforms\Managed\System\WinForms\ToolStrip.cs (2)
260return base.AutoSize; 263if (IsInToolStripPanel && base.AutoSize && !value) {
winforms\Managed\System\WinForms\ToolStripPanel.cs (2)
148return base.AutoSize; 683if (controlArray[i].AutoSize) {
winforms\Managed\System\WinForms\UpDownBase.cs (1)
175return base.AutoSize;
winforms\Managed\System\WinForms\UserControl.cs (1)
64return base.AutoSize;