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