次の方法で共有


WizardForm.TaskProgressStartColor プロパティ

定義

進行状況バーのグラデーションの開始色を取得または設定します。

public:
 property System::Drawing::Color TaskProgressStartColor { System::Drawing::Color get(); void set(System::Drawing::Color value); };
public System.Drawing.Color TaskProgressStartColor { get; set; }
member this.TaskProgressStartColor : System.Drawing.Color with get, set
Public Property TaskProgressStartColor As Color

プロパティ値

Color進行状況バーのグラデーションの開始色として使用される構造体。 既定の色は [A=255、R=0、G=51、B=135] で、これは -16764025 の整数値です。

TaskProgressStartColorプロパティの例を次に示します。 次の使用例は、 プロパティの値を TaskProgressStartColor 赤の色に設定します。 このコード例は、WizardForm クラスのために提供されている大規模な例の一部です。

// Customize the StartTaskProgressMethod.
protected override void StartTaskProgress()
{
    TaskProgressStartColor = Color.Red;
    TaskProgressEndColor = Color.Yellow;
    // Default TaskProgressScrollSpeed is a value of 6.
    TaskProgressScrollSpeed = 2;
    // Default TaskProgressGradientSpeed is a value of 1;
    TaskProgressGradientSpeed = 3;
    //Set the task Glyph.
    TaskGlyph = Icon.FromHandle(Cursors.Arrow.Handle).ToBitmap();
    TaskGlyph.RotateFlip(RotateFlipType.Rotate90FlipNone);
    // Implement the StartTaskProgress from the base class.
    base.StartTaskProgress();
}
// Customize the StartTaskProgressMethod.
protected override void StartTaskProgress()
{
    TaskProgressStartColor = Color.Red;
    TaskProgressEndColor = Color.Yellow;
    // Default TaskProgressScrollSpeed is a value of 6.
    TaskProgressScrollSpeed = 2;
    // Default TaskProgressGradientSpeed is a value of 1;
    TaskProgressGradientSpeed = 3;
    //Set the task Glyph.
    TaskGlyph = Icon.FromHandle(Cursors.Arrow.Handle).ToBitmap();
    TaskGlyph.RotateFlip(RotateFlipType.Rotate90FlipNone);
    // Implement the StartTaskProgress from the base class.
    base.StartTaskProgress();
}

注釈

進行状況バーには、 および TaskProgressEndColor プロパティ値の値によって定義された色グラデーションがTaskProgressStartColor表示されます。 TaskProgressStartColorプロパティを使用すると、進行状況バーのグラデーションの開始色をカスタマイズできます。 と のTaskProgressEndColorTaskProgressStartColorが等しい場合、進行状況バーは実線として表示されます。

このプロパティの値は、 などのColor.Redシステム定義の色として、または や Color.FromArgb(-65536)などの 32 ビット ARGB 値としてColor.FromArgb(255,255,0,0)指定できます。

適用対象