Hello all,
I have a problem to catch the AfterDisplay event for introductionPage (it's a first page of my wizard).
Here the code:
this.introductionPage = new Divelements.WizardFramework.IntroductionPage();
this.mainWizard.Controls.Add(this.introductionPage);
this.mainWizard.SelectedPage = this.introductionPage;
this.introductionPage.AfterDisplay +=new EventHandler(introductionPage_AfterDisplay);
private void introductionPage_AfterDisplay(object sender, EventArgs e){
MessageBox.Show(this, "OK", "OK", MessageBoxButtons.OK);
}
The message box is never shown.
Is it a normal behaviour? I trying to open a help file for wizardframework, but it doesnt work
Strictly speaking, I need to catch a latest moment after the panel entering to showing phase.
Thank you for the help