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

フォントドロップダウンリスト内の項目の前景色を取得または設定します。
構文
Public Property ForeColor As Color
public Color ForeColor {get; set;}

プロパティ値

項目の前景色を表すSystem.Drawing.Color。デフォルトはSystem.Windows.Forms.Control.DefaultForeColorプロパティの値です。
解説
ForeColorプロパティはアンビエントプロパティです。ItemStyleのアンビエントプロパティは、設定されていない場合、関連付けられたGcFontPickerコントロールから値が取得されます。たとえば、デフォルトでは、ItemStyleプロパティのForeColorは関連付けられたGcFontPickerコントロールと同じになります。
使用例

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

private void CustomItemStyleWithBackAndForeColor()
{
    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);

    // Set the item's BackColor and ForeColor.
    gcFontPicker.ItemStyle.BackColor = Color.Green;
    gcFontPicker.ItemStyle.ForeColor = Color.Gold;

    // adds gcFontPicker to the form.
    this.Controls.Add(gcFontPicker);
}
Private Sub CustomItemStyleWithBackAndForeColor()
    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)

    ' Set the item's BackColor and ForeColor.
    gcFontPicker.ItemStyle.BackColor = Color.Green
    gcFontPicker.ItemStyle.ForeColor = Color.Gold

    ' 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 メンバ
System.Windows.Forms.Control.ForeColor
System.Windows.Forms.Control.ForeColor

Send Feedback