PropertyGrid.LargeButtons Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a value indicating whether buttons appear in standard size or in large size.
public:
property bool LargeButtons { bool get(); void set(bool value); };
public bool LargeButtons { get; set; }
member this.LargeButtons : bool with get, set
Public Property LargeButtons As Boolean
Property Value
true
if buttons on the control appear large; otherwise, false
. The default is false
.
Remarks
You can use this property to enhance accessibility. Large buttons are 32-by-32 pixels rather than the standard 16-by-16 pixels. Both the large and small buttons are resized according to the system DPI setting when the app.config file contains the following entry:
<appSettings>
<add key="EnableWindowsFormsHighDpiAutoResizing" value="true" />
</appSettings>