Base:
property
AutoSize
System.Windows.Forms.Control.AutoSize
3 overrides of AutoSize
System.Windows.Forms (3)
System\Windows\Forms\Design\ComponentEditorForm.cs (1)
120public override bool AutoSize
System\Windows\Forms\Dialogs\ThreadExceptionDialog.cs (1)
351public override bool AutoSize
System\Windows\Forms\Printing\PrintPreviewDialog.cs (1)
90public override bool AutoSize
19 writes to AutoSize
PresentationUI (11)
MS\Internal\Documents\Application\DocumentPropertiesDialog.Designer.cs (1)
728this.AutoSize = true;
MS\Internal\Documents\CredentialManagerDialog.Designer.cs (1)
162this.AutoSize = true;
MS\Internal\Documents\RequestedSignatureDialog.Designer.cs (1)
218AutoSize = true;
MS\Internal\Documents\RMEnrollmentPage1.Designer.cs (1)
207AutoSize = true;
MS\Internal\Documents\RMEnrollmentPage2.Designer.cs (1)
211this.AutoSize = true;
MS\Internal\Documents\RMEnrollmentPage3.Designer.cs (1)
122this.AutoSize = true;
MS\Internal\Documents\RMPermissions.Designer.cs (1)
184this.AutoSize = true;
MS\Internal\Documents\RMPublishingDialog.Designer.cs (1)
371this.AutoSize = true;
MS\Internal\Documents\SignatureSummaryDialog.Designer.cs (1)
204AutoSize = true;
MS\Internal\Documents\SigningDialog.Designer.cs (1)
256AutoSize = true;
MS\Internal\Documents\SigningProgress.Designer.cs (1)
57AutoSize = true;
System.Windows.Forms (4)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridErrorDialog.cs (1)
264AutoSize = true;
System\Windows\Forms\Design\ComponentEditorForm.cs (1)
123set => base.AutoSize = value;
System\Windows\Forms\Dialogs\ThreadExceptionDialog.cs (1)
354set => base.AutoSize = value;
System\Windows\Forms\Printing\PrintPreviewDialog.cs (1)
93set => base.AutoSize = value;
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\FormatStringDialog.cs (1)
205AutoSize = true;
System.Windows.Forms.Tests (2)
System\Windows\Forms\FormTests.cs (2)
598AutoSize = value 603form.AutoSize = value;
WinFormsControlsTest (1)
TaskDialogSamples.cs (1)
15AutoSize = true;
11 references to AutoSize
System.Windows.Forms (8)
System\Windows\Forms\Design\ComponentEditorForm.cs (1)
122get => base.AutoSize;
System\Windows\Forms\Dialogs\ThreadExceptionDialog.cs (1)
353get => base.AutoSize;
System\Windows\Forms\Form.cs (5)
497if (value != AutoSize) 500if (!AutoSize) 511Debug.Assert(AutoSize == value, "Error detected setting Form.AutoSize."); 4199if (AutoSize) 6759Size minTrack = (AutoSize && _formStateEx[s_formStateExInModalSizingLoop] == 1) ? LayoutUtils.UnionSizes(_minAutoSize, MinimumSize) : MinimumSize;
System\Windows\Forms\Printing\PrintPreviewDialog.cs (1)
92get => base.AutoSize;
System.Windows.Forms.Tests (3)
System\Windows\Forms\FormTests.cs (3)
38Assert.False(control.AutoSize); 600Assert.Equal(value, form.AutoSize); 604Assert.Equal(value, form.AutoSize);