PowerTools PlusPak 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
プラットフォーム

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

参照

ThemeColors クラス
ThemeColors メンバ

Send Feedback