PowerTools MultiRow for Windows Forms 8.0J
ThemeColors コンストラクタ
使用例 

1つのテーマに関連する一連の色。
ThemeColorsクラスの新しいインスタンスを初期化します。
構文
Public Function New( _
   ByVal value() As Color _
)
public ThemeColors( 
   Color[] value
)

パラメータ

value
1つのテーマに関連する一連の色。
例外
例外解説
System.ArgumentNullExceptionvalueがnullです。
System.ArgumentExceptionvalueの長さが0です。
使用例
次のサンプルコードは、このコンストラクターを使用してGcColorPickerコントロールのテーマカラーを独自に定義する方法を示します。このサンプルコードを実行するには、以下のコードをSystem.Windows.Forms.Formプロジェクトに追加し、ここで作成したメソッドをコンストラクターまたはフォーム上の別のメソッドから呼び出します。
private void CreateGcColorPickerWithCustomThemeColors()
{
    // 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);

    gcColorPicker.ThemeColors = new ThemeColors(
        new Color[]
        {
            Color.AliceBlue, 
            Color.Blue, 
            Color.BlueViolet,
            Color.CadetBlue, 
            Color.CornflowerBlue, 
            Color.DarkBlue, 
            Color.DarkSlateBlue, 
            Color.DeepSkyBlue, 
            Color.DodgerBlue, 
            Color.LightBlue
        });
    gcColorPicker.ThemeColorsText = "Blue Themed Colors";

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

    gcColorPicker.ThemeColors = New ThemeColors(New Color() {Color.AliceBlue, Color.Blue, Color.BlueViolet, Color.CadetBlue, Color.CornflowerBlue, Color.DarkBlue, _
     Color.DarkSlateBlue, Color.DeepSkyBlue, Color.DodgerBlue, Color.LightBlue})
    gcColorPicker.ThemeColorsText = "Blue Themed Colors"

    ' adds gcColorPicker to the form.
    Me.Controls.Add(gcColorPicker)
End Sub
参照

ThemeColors クラス
ThemeColors メンバ

 

 


© 2008-2015 GrapeCity inc. All rights reserved.