Arguments passed to an application when Page is closed in a wizard. The Next page to be displayed can be changed, by the application, by setting the NextPage to a wizardPage which is part of the wizard that generated this event.
Inheritance: System.EventArgs
Exemple #1
0
        /// <summary>
        /// Fires the CloseFromNextEvent
        /// </summary>
        /// <param name="wiz">Sender</param>
        public int OnCloseFromNext(Wizard wiz)
        {
            //Event args thinks that the next pgae will be the one before this one
            PageEventArgs e = new PageEventArgs(wiz.PageIndex + 1, wiz.Pages);

            //Tell anybody who listens
            if (CloseFromNext != null)
            {
                CloseFromNext(wiz, e);
            }
            //And then tell whomever called me what the prefered page is
            return(e.PageIndex);
        }
Exemple #2
0
 /// <summary>
 /// Fires the CloseFromBack Event
 /// </summary>
 /// <param name="wiz">Wizard to pass into the sender argument</param>
 /// <returns>Index of Page that the event handlers would like to see next</returns>
 public int OnCloseFromBack(Wizard wiz)
 {
     //Event args thinks that the next pgae will be the one before this one
     PageEventArgs e = new PageEventArgs(wiz.PageIndex -1, wiz.Pages);
     //Tell anybody who listens
     if (CloseFromBack != null)
         CloseFromBack(wiz, e);
     //And then tell whomever called me what the prefered page is
     return e.PageIndex;
 }