6 writes to RequiredScalingEnabled
System.Windows.Forms (3)
System\Windows\Forms\Control.cs (2)
326RequiredScalingEnabled = true; 4223RequiredScalingEnabled = value.RequiredScalingEnabled;
System\Windows\Forms\Layout\Containers\ContainerControl.cs (1)
609start.RequiredScalingEnabled = enable;
System.Windows.Forms.Tests (3)
System\Windows\Forms\ControlTests.Internals.cs (3)
57RequiredScalingEnabled = value 62control.RequiredScalingEnabled = value; 66control.RequiredScalingEnabled = !value;
6 references to RequiredScalingEnabled
System.Windows.Forms (3)
System\Windows\Forms\Control.cs (1)
4223RequiredScalingEnabled = value.RequiredScalingEnabled;
System\Windows\Forms\Layout\Containers\ContainerControl.cs (2)
870PerformAutoScale(!RequiredScalingEnabled, excludedBounds: true, causedByFontChanged: true); 916_state[s_stateParentChanged] = !RequiredScalingEnabled;
System.Windows.Forms.Tests (3)
System\Windows\Forms\ControlTests.Internals.cs (3)
59Assert.Equal(value, control.RequiredScalingEnabled); 63Assert.Equal(value, control.RequiredScalingEnabled); 67Assert.Equal(!value, control.RequiredScalingEnabled);