PropertyGrid.LargeButtons プロパティ

定義

ボタンを標準サイズと大きいサイズのどちらで表示するかを示す値を取得または設定します。

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

プロパティ値

コントロール上のボタンを大きく表示する場合は true。それ以外の場合は false。 既定値は、false です。

注釈

このプロパティを使用すると、アクセシビリティを向上させることができます。 大きなボタンは、標準の 16 x 16 ピクセルではなく 32 x 32 ピクセルです。 app.config ファイルに次のエントリが含まれている場合、大きいボタンと小さいボタンの両方がシステム DPI 設定に従ってサイズ変更されます。

<appSettings>  
  <add key="EnableWindowsFormsHighDpiAutoResizing" value="true" />  
</appSettings>  

適用対象