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

GcColorPickerコントロールのドロップダウンスタイルを取得または設定します。
構文
Public Property DropDownStyle As DropDownStyle
public DropDownStyle DropDownStyle {get; set;}

プロパティ値

DropDownStyle値の1つ。デフォルトはDropDownStyle.DropDownです。
例外
例外解説
System.ComponentModel.InvalidEnumArgumentException指定された値がDropDownStyle値の1つではありません。
解説
DropDownStyleプロパティは、ユーザーに表示されるインタフェースを制御します。デフォルトのDropDownStyle.DropDownスタイルでは、GcColorPickerのテキスト部分は編集可能で、そのテキスト部分に値を入力して色を指定できます。また、GrapeCity.Win.Common.DropDownButtonをクリックするとドロップダウンウィンドウが開きます。DropDownListスタイルでは、GcColorPickerのテキスト部分は編集不可であり、GrapeCity.Win.Common.DropDownButtonまたはテキスト部分をクリックすると、色を選択するドロップダウンウィンドウが開きます。
使用例

次のサンプルコードは、GcColorPickerコントロールを作成する方法を示します。また、DropDownStyleプロパティの使用方法も示します。このサンプルコードを実行するには、以下のコードをSystem.Windows.Forms.Formプロジェクトに追加し、ここで作成したメソッドをコンストラクターまたはフォーム上の別のメソッドから呼び出します。

private void CreateDropDownListGcColorPicker()
{
    // Create an instance of GcColorPicker control.
    GcColorPicker gcColorPicker = new GcColorPicker();

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

    // Set the DropDownList style.
    gcColorPicker.DropDownStyle = DropDownStyle.DropDownList;

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

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

    ' Set the DropDownList style.
    gcColorPicker.DropDownStyle = DropDownStyle.DropDownList

    ' adds gcColorPicker to the form.
    Me.Controls.Add(gcColorPicker)
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

参照

GcColorPicker クラス
GcColorPicker メンバ
DropDownStyle 列挙体
DropDownStyle 列挙体

Send Feedback