4 writes to AutoScale
System.Windows.Forms (2)
System\Windows\Forms\Form.cs (1)
3954AutoScale = false;
System\Windows\Forms\Printing\PrintPreviewDialog.cs (1)
75set => base.AutoScale = value;
System.Windows.Forms.Tests (2)
System\Windows\Forms\FormTests.cs (2)
551AutoScale = value 556form.AutoScale = value;
6 references to AutoScale
System.Windows.Forms (1)
System\Windows\Forms\Printing\PrintPreviewDialog.cs (1)
74get => base.AutoScale;
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\FormDocumentDesigner.cs (1)
89return !_initializing && ((Form)Component).AutoScale && ShadowProperties.Contains(nameof(AutoScaleBaseSize));
System.Windows.Forms.Tests (4)
System\Windows\Forms\Design\ComponentEditorFormTests.cs (1)
29Assert.True(control.AutoScale);
System\Windows\Forms\FormTests.cs (3)
27Assert.True(control.AutoScale); 553Assert.Equal(value, form.AutoScale); 557Assert.Equal(value, form.AutoScale);