WizardForm.TaskProgressStartColor プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
進行状況バーのグラデーションの開始色を取得または設定します。
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プロパティを使用すると、進行状況バーのグラデーションの開始色をカスタマイズできます。 と のTaskProgressEndColor値TaskProgressStartColorが等しい場合、進行状況バーは実線として表示されます。
このプロパティの値は、 などのColor.Red
システム定義の色として、または や Color.FromArgb(-65536)
などの 32 ビット ARGB 値としてColor.FromArgb(255,255,0,0)
指定できます。