ButtonBase.FlatStyle プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ボタン コントロールのフラット スタイルの外観を取得または設定します。
public:
property System::Windows::Forms::FlatStyle FlatStyle { System::Windows::Forms::FlatStyle get(); void set(System::Windows::Forms::FlatStyle value); };
public System.Windows.Forms.FlatStyle FlatStyle { get; set; }
member this.FlatStyle : System.Windows.Forms.FlatStyle with get, set
Public Property FlatStyle As FlatStyle
プロパティ値
FlatStyle 値のいずれか 1 つ。 既定値は Standard
です。
例外
代入された値が、FlatStyle 値ではありません。
例
次のコード例では、派生クラスを使用し、 Button その共通プロパティの一部を設定します。 結果は、左側にテキストが表示され、右側に画像が表示されたフラット ボタンになります。 このコードでは、ディレクトリに格納されているC:\Graphics
名前MyBitMap.bmp
のビットマップ イメージがあり、名前空間へのSystem.Drawing参照が含まれている必要があります。
private:
void SetMyButtonProperties()
{
// Assign an image to the button.
button1->Image = Image::FromFile( "C:\\Graphics\\MyBitmap.bmp" );
// Align the image and text on the button.
button1->ImageAlign = ContentAlignment::MiddleRight;
button1->TextAlign = ContentAlignment::MiddleLeft;
// Give the button a flat appearance.
button1->FlatStyle = FlatStyle::Flat;
}
private void SetMyButtonProperties()
{
// Assign an image to the button.
button1.Image = Image.FromFile("C:\\Graphics\\MyBitmap.bmp");
// Align the image and text on the button.
button1.ImageAlign = ContentAlignment.MiddleRight;
button1.TextAlign = ContentAlignment.MiddleLeft;
// Give the button a flat appearance.
button1.FlatStyle = FlatStyle.Flat;
}
Private Sub SetMyButtonProperties()
' Assign an image to the button.
button1.Image = Image.FromFile("C:\Graphics\MyBitmap.bmp")
' Align the image and text on the button.
button1.ImageAlign = ContentAlignment.MiddleRight
button1.TextAlign = ContentAlignment.MiddleLeft
' Give the button a flat appearance.
button1.FlatStyle = FlatStyle.Flat
End Sub
注釈
クラスのプロパティがFlatStyle設定System
されている場合、コントロールはユーザーのオペレーティング システムによって描画され、チェックの配置は、およびTextAlignプロパティの値にCheckAlign
基づいています。RadioButton CheckBox プロパティ値は CheckAlign
変更されませんが、コントロールの外観が影響を受ける可能性があります。 チェック ボックスは、コントロールの左端または右端に水平方向に配置され (左揃えまたは中央揃え、右揃えのまま)、説明テキストと同じように垂直方向に配置されます。 たとえば、CheckBoxCheckAlign
プロパティ値ContentAlignment
が . MiddleCenter
TextAlign、プロパティ値 、ContentAlignment.TopRight
およびFlatStyleプロパティ値が設定System
されている場合、テキストの配置が変更されていない間は、チェック ボックスの配置が表示されますContentAlignment.TopLeft
。