8 writes to AutoSize
System.Windows.Forms.Tests (8)
System\Windows\Forms\SplitterPanelTests.cs (8)
132control.AutoSize = value; 138control.AutoSize = value; 144control.AutoSize = !value; 155AutoSize = true 167control.AutoSize = false; 172control.AutoSize = false; 177control.AutoSize = true; 183control.AutoSize = false;
9 references to AutoSize
System.Windows.Forms (1)
System\Windows\Forms\Panels\SplitterPanel.cs (1)
36/// Occurs when the value of the <see cref="AutoSize" /> property has changed.
System.Windows.Forms.Tests (8)
System\Windows\Forms\SplitterPanelTests.cs (8)
34Assert.False(control.AutoSize); 133Assert.Equal(value, control.AutoSize); 139Assert.Equal(value, control.AutoSize); 145Assert.Equal(!value, control.AutoSize); 168Assert.False(control.AutoSize); 173Assert.False(control.AutoSize); 178Assert.True(control.AutoSize); 184Assert.False(control.AutoSize);