次の方法で共有


WizardForm.TaskGlyph プロパティ

定義

フォームのイメージを取得または設定します。

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

プロパティ値

Imageウィザードで使用されるオブジェクト。

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

注釈

プロパティを TaskGlyph イメージに設定して、ウィザードに表示します。 フォームに表示する前に、イメージをカスタマイズできます。

適用対象