PowerTools MultiRow for Windows Forms 8.0J
ThemeColors クラス
メンバ  使用例 

1つのテーマに関連する一連の色を表します。
構文
Public Class ThemeColors 
public class ThemeColors 
解説
このクラスは、組み込みのThemeColorsをユーザーに提供します。これらの色では要件が満たされない場合は、必要な色を含むThemeColorsをインスタンス化して、ThemeColorsを独自にカスタマイズできます。
使用例

次のサンプルコードは、GcColorPicker.ThemeColorsプロパティを使用して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
継承階層

System.Object
   GrapeCity.Win.Pickers.ThemeColors

参照

ThemeColors メンバ
GrapeCity.Win.Pickers 名前空間

 

 


© 2008-2015 GrapeCity inc. All rights reserved.