// Token: 0x06000020 RID: 32 RVA: 0x00002584 File Offset: 0x00000784
 public virtual void OnWizardPrevious(WizardPageEventArgs e)
 {
     if (this.WizardPrevious != null)
     {
         this.WizardPrevious(this, e);
     }
 }
 // Token: 0x0600001F RID: 31 RVA: 0x0000256D File Offset: 0x0000076D
 public virtual void OnWizardNext(WizardPageEventArgs e)
 {
     if (this.WizardNext != null)
     {
         this.WizardNext(this, e);
     }
 }
Esempio n. 3
0
        // Token: 0x060001BF RID: 447 RVA: 0x000095F4 File Offset: 0x000077F4
        internal void DoBtnNextClick(bool isRetry)
        {
            this.DisableNextButtonTimer();
            this.DisableCheckLoadedTimer();
            this.EnablePrintButton(false);
            int activeIndex = this.GetActiveIndex();

            if (activeIndex == this.pages.Count - 1)
            {
                base.Close();
                return;
            }
            if (isRetry)
            {
                CancelEventArgs e = new CancelEventArgs();
                this.activePage.OnWizardRetry(e);
                return;
            }
            if (this.ValidateChildren())
            {
                WizardPageEventArgs e2 = this.PreChangePage(1);
                this.activePage.OnWizardNext(e2);
                this.PostChangePage(e2);
            }
        }
Esempio n. 4
0
 // Token: 0x060001B9 RID: 441 RVA: 0x0000953D File Offset: 0x0000773D
 private void PostChangePage(WizardPageEventArgs e)
 {
     if (!e.Cancel)
     {
         this.SetActivePage(e.Page);
     }
 }
Esempio n. 5
0
 // Token: 0x060001C0 RID: 448 RVA: 0x0000966C File Offset: 0x0000786C
 private void BtnPrevious_Click(object sender, EventArgs e)
 {
     this.DisableNextButtonTimer();
     this.DisableCheckLoadedTimer();
     this.EnablePrintButton(false);
     this.Retry = false;
     this.Exit  = false;
     if (this.ValidateChildren())
     {
         WizardPageEventArgs e2 = this.PreChangePage(-1);
         this.activePage.OnWizardPrevious(e2);
         this.PostChangePage(e2);
     }
 }
 // Token: 0x06000042 RID: 66 RVA: 0x00002A3B File Offset: 0x00000C3B
 public override void OnWizardNext(WizardPageEventArgs e)
 {
     this.SetNextPageVisible();
     base.OnWizardNext(e);
 }