PowerTools PlusPak for Windows Forms 8.0J
ShowFontNamesInFont プロパティ
使用例 

項目のテキストを表示するためにFontInfo項目によって表されるFontを使用するかどうかを示す値を取得または設定します。
構文
Public Property ShowFontNamesInFont As Boolean
public bool ShowFontNamesInFont {get; set;}

プロパティ値

項目のテキストを表示するためにFontInfo項目によって表されるFontを使用する場合はtrue、すべてのFontInfo項目のテキストを表示するためにItemStyle.Fontを使用する場合はfalse
解説
このプロパティの値は、どのFontを使用してFontInfo項目のテキストを表示するかを決定します。trueは、FontInfo項目によって表される固有のFontを使用して項目のテキストを表示することを意味します。この場合は、FontSizeプロパティによってFontのサイズを指定できます。falseは、指定されたItemStyle.Fontを使用してすべての項目のテキストを表示することを意味します。
使用例

次のサンプルコードは、GcFontPicker.ItemStyleプロパティ上でShowFontNamesInFontfalseに設定して、ItemStyle.Fontの値がフォントドロップダウンリストの項目に適用されるようにします。この例を実行するには、以下のコードをSystem.Windows.Forms.Formに追加し、ここで作成したメソッドをコンストラクターまたはフォーム上の別のメソッドから呼び出す必要があります。

private void CustomItemStyleWithFont()
{
    this.button1.Visible = false;

    // 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, 10);

    // Use the Font set by user not the Font represented by the item.
    gcFontPicker.ItemStyle.ShowFontNamesInFont = false;
    gcFontPicker.ItemStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, GraphicsUnit.Point);

    // adds gcFontPicker to the form.
    this.Controls.Add(gcFontPicker);
}
Private Sub CustomItemStyleWithFont()
    Me.button1.Visible = False

    ' 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, 10)

    ' Use the Font set by user not the Font represented by the item.
    gcFontPicker.ItemStyle.ShowFontNamesInFont = False
    gcFontPicker.ItemStyle.Font = New System.Drawing.Font("Microsoft Sans Serif", 11.0F, System.Drawing.FontStyle.Regular, GraphicsUnit.Point)

    ' 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

参照

ItemStyle クラス
ItemStyle メンバ

Send Feedback