次の方法で共有


WizardForm.TaskProgressScrollSpeed プロパティ

定義

進行状況バーのスクロール速度を取得または設定します。

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

プロパティ値

進行状況バーのスクロール速度。 既定値は 6 です。

例外

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

TaskProgressScrollSpeedプロパティの例を次に示します。 次の使用例は、 プロパティを TaskProgressScrollSpeed 2 に設定します。 このコード例は、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();
}

注釈

プロパティの値が TaskProgressScrollSpeed 大きくなると、スクロール速度が上がります。

適用対象