1 override of AutoScaleBaseSize
System.Windows.Forms (1)
System\Windows\Forms\Printing\PrintPreviewDialog.cs (1)
668public override Size AutoScaleBaseSize
3 writes to AutoScaleBaseSize
System.Windows.Forms (3)
System\Windows\Forms\Design\ComponentEditorForm.cs (1)
306AutoScaleBaseSize = new Size(5, 14);
System\Windows\Forms\Form.cs (1)
2997AutoScaleBaseSize = newVar;
System\Windows\Forms\Printing\PrintPreviewDialog.cs (1)
53base.AutoScaleBaseSize = new Size(5, 13);
7 references to AutoScaleBaseSize
System.Windows.Forms (3)
System\Windows\Forms\Form.cs (2)
2982Size baseVar = AutoScaleBaseSize; 5847/// Indicates whether the <see cref="AutoScaleBaseSize"/> property should be
System\Windows\Forms\Printing\PrintPreviewDialog.cs (1)
670get => base.AutoScaleBaseSize;
System.Windows.Forms.Tests (4)
System\Windows\Forms\Design\ComponentEditorFormTests.cs (2)
31Assert.True(control.AutoScaleBaseSize.Width > 0); 32Assert.True(control.AutoScaleBaseSize.Height > 0);
System\Windows\Forms\FormTests.cs (2)
29Assert.True(control.AutoScaleBaseSize.Width > 0); 30Assert.True(control.AutoScaleBaseSize.Height > 0);