PowerTools PlusPak for Windows Forms 8.0J
FlatStyle プロパティ (GcFontPicker)
使用例 

GcFontPickerコントロールのフラットスタイルの外観を取得または設定します。
構文
Public Overrides Property FlatStyle As FlatStyleEx
public override FlatStyleEx FlatStyle {get; set;}

プロパティ値

GrapeCity.Win.Common.FlatStyleEx値の1つ。デフォルトはGrapeCity.Win.Common.FlatStyleEx.Standardです。
例外
例外解説
System.ComponentModel.InvalidEnumArgumentException指定された値がGrapeCity.Win.Common.FlatStyleEx値の1つではありません。
使用例

次のサンプルコードは、GrapeCity.Win.Common.FlatStyleEx.Office2007Blueテーマが適用されたGcFontPickerコントロールを作成する方法を示します。このサンプルコードを実行するには、以下のコードをSystem.Windows.Forms.Formプロジェクトに追加し、ここで作成したメソッドをコンストラクターまたはフォーム上の別のメソッドから呼び出します。

private void CreateOfficeThemeGcFontPicker()
{
    // Create an instance of GcFontPicker control.
    GcFontPicker gcFontPicker = new GcFontPicker();

    // Initialize the Name and Location of the gcFontPicker.
    gcFontPicker.Name = "gcFontPicker";
    gcFontPicker.Location = new Point(10, 50);

    // Set the FlatStyle.
    gcFontPicker.FlatStyle = GrapeCity.Win.Common.FlatStyleEx.Office2007Blue;

    // adds gcFontPicker to the form.
    this.Controls.Add(gcFontPicker);
}
Private Sub CreateOfficeThemeGcFontPicker()
    ' Create an instance of GcFontPicker control.
    Dim gcFontPicker As New GcFontPicker()

    ' Initialize the Name and Location of the gcFontPicker.
    gcFontPicker.Name = "gcFontPicker"
    gcFontPicker.Location = New Point(10, 50)

    ' Set the FlatStyle.
    gcFontPicker.FlatStyle = Common.FlatStyleEx.Office2007Blue

    ' adds gcFontPicker to the form.
    Me.Controls.Add(gcFontPicker)
End Sub
プラットフォーム

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

参照

GcFontPicker クラス
GcFontPicker メンバ
FlatStyleEx 列挙体
FlatStyleEx 列挙体

Send Feedback