7 writes to LargeButtons
System.Windows.Forms.Tests (6)
System\Windows\Forms\PropertyGridTests.cs (6)
2081control.LargeButtons = value; 2088control.LargeButtons = value; 2095control.LargeButtons = !value; 2123control.LargeButtons = value; 2133control.LargeButtons = value; 2143control.LargeButtons = !value;
System.Windows.Forms.UI.IntegrationTests (1)
PropertyGridTests.cs (1)
331_propertyGrid.LargeButtons = true;
12 references to LargeButtons
System.Windows.Forms (3)
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (3)
2613int toolStripHeight = ((LargeButtons) ? s_largeButtonSize : s_normalButtonSize).Height + _toolStripButtonPaddingY; 3969if (LargeButtons) 3974_toolStrip.ImageList = LargeButtons ? _largeButtonImages : _normalButtonImages;
System.Windows.Forms.Tests (7)
System\Windows\Forms\PropertyGridTests.cs (7)
120Assert.False(control.LargeButtons); 2082Assert.Equal(value, control.LargeButtons); 2089Assert.Equal(value, control.LargeButtons); 2096Assert.Equal(!value, control.LargeButtons); 2124Assert.Equal(value, control.LargeButtons); 2134Assert.Equal(value, control.LargeButtons); 2144Assert.Equal(!value, control.LargeButtons);
System.Windows.Forms.UI.IntegrationTests (2)
PropertyGridTests.cs (2)
329_propertyGrid.LargeButtons.Should().BeFalse(); 332_propertyGrid.LargeButtons.Should().BeTrue();