次の方法で共有


WizardPage.UpdateWizard メソッド

定義

ウィザードの表示を更新するメカニズムを提供します。

protected:
 void UpdateWizard();
protected void UpdateWizard ();
member this.UpdateWizard : unit -> unit
Protected Sub UpdateWizard ()

UpdateWizardメソッドの例を次に示します。 この例では、ユーザーが十分に検証され、 CanNavigateNext プロパティが に true設定されています。 [ 次へ ] ボタンを有効にするには、ウィザードの更新が必要です。

// Customize the CanNavigateNext property. This property
// is set to false until the user is validated.
private void button1_Click(object sender, EventArgs e)
{
    // Perform user validation checks. If this is a valid
    // user move to the next page. If the user is not a valid
    // user, exit the application.
    // User validation.
    string text = "Did the user pass validation?";
    MessageBoxButtons buttons = MessageBoxButtons.YesNo;
    MessageBoxIcon icon = MessageBoxIcon.Information;
    MessageBoxDefaultButton defaultButton = MessageBoxDefaultButton.Button2;
    DialogResult result = ShowMessage(text, buttons, icon, defaultButton);
    if (result == DialogResult.No)
    {
        Application.Exit();
    }
    else
    {
        _canNavigateNext = true;
        this.UpdateWizard();
        ShowHelp();
    }
}

注釈

ウィザードの表示を更新する必要がある場合は、このメソッドを呼び出します。 このメソッドを使用すると、カスタム メソッドを作成できます UpdateWizard

適用対象