예제 #1
0
 private void btnBack_Click(object sender, EventArgs e)
 {
     WizardPage.PageTransitionEventArgs args = new WizardPage.PageTransitionEventArgs();
     currentPage.OnPageBack(args);
     if (args.Page != null)
     {
         ActivatePage(args.Page);
     }
 }
예제 #2
0
 private void btnNext_Click(object sender, EventArgs e)
 {
     // the "Next" button has been pressed, activate the next page
     WizardPage.PageTransitionEventArgs args = new WizardPage.PageTransitionEventArgs();
     currentPage.OnPageNext(args);
     if (args.Page != null)
     {
         ActivatePage(args.Page);
     }
 }
예제 #3
0
파일: FormMain.cs 프로젝트: t00/TestCrypt
 private void btnBack_Click(object sender, EventArgs e)
 {
     WizardPage.PageTransitionEventArgs args = new WizardPage.PageTransitionEventArgs();
     currentPage.OnPageBack(args);
     if (args.Page != null)
     {
         ActivatePage(args.Page);
     }
 }
예제 #4
0
파일: FormMain.cs 프로젝트: t00/TestCrypt
 private void btnNext_Click(object sender, EventArgs e)
 {
     // the "Next" button has been pressed, activate the next page
     WizardPage.PageTransitionEventArgs args = new WizardPage.PageTransitionEventArgs();
     currentPage.OnPageNext(args);
     if (args.Page != null)
     {
         ActivatePage(args.Page);
     }
 }