次の方法で共有


WizardForm.TaskProgressGradientSpeed プロパティ

定義

進行状況バーが一度に表示する色グラデーション のサイクル数を取得または設定します。

public:
 property int TaskProgressGradientSpeed { int get(); void set(int value); };
public int TaskProgressGradientSpeed { get; set; }
member this.TaskProgressGradientSpeed : int with get, set
Public Property TaskProgressGradientSpeed As Integer

プロパティ値

進行状況バーに表示される色グラデーションのサイクルの数。 既定値は 1 です。

例外

プロパティの TaskProgressGradientSpeed 値が 1 未満です。

TaskProgressGradientSpeedプロパティの例を次に示します。 次の使用例は、 プロパティの値を TaskProgressGradientSpeed 3 に設定して、3 つの色グラデーション サイクルを提供します。 このコード例は、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();
}

注釈

プロパティはTaskProgressGradientSpeed、プロパティの値からプロパティの値までのTaskProgressEndColor色グラデーションのサイクルをTaskProgressStartColor、進行状況バーに一度に表示する回数を定義します。

適用対象