Exemple #1
0
 // Token: 0x060001C6 RID: 454 RVA: 0x000097CC File Offset: 0x000079CC
 private void SetupFormBase_FormClosed(object sender, FormClosedEventArgs e)
 {
     if (!string.IsNullOrEmpty(SetupFormBase.LaunchECPUrl))
     {
         SetupFormBase.ShowHelpFromUrl(SetupFormBase.LaunchECPUrl);
     }
 }
        // Token: 0x06000026 RID: 38 RVA: 0x00002614 File Offset: 0x00000814
        internal void SetPageVisibleControl(string parentPageName, string pageName, bool visible)
        {
            SetupFormBase   wizard          = this.GetWizard();
            SetupWizardPage setupWizardPage = wizard.FindPage(pageName);

            setupWizardPage.PageVisible    = visible;
            setupWizardPage.ParentPageName = parentPageName;
        }
Exemple #3
0
 // Token: 0x060001C2 RID: 450 RVA: 0x000096C8 File Offset: 0x000078C8
 private void ShowHelp()
 {
     if (this.HelpUrlGenerator == null)
     {
         throw new Exception("HelpUrlGenerator object is not initialized.");
     }
     try
     {
         string helpUrl = this.HelpUrlGenerator.GetHelpUrl(this.GetHelpId(this.activePage.Name));
         SetupFormBase.ShowHelpFromUrl(helpUrl);
     }
     catch (ArgumentException)
     {
         MessageBox.Show(string.Format("{0} is not an value of the HelpId enumeration.", this.activePage.Name));
     }
 }
        // Token: 0x06000034 RID: 52 RVA: 0x000027AC File Offset: 0x000009AC
        protected void SetTopMost(bool topMost)
        {
            SetupFormBase wizard = this.GetWizard();

            wizard.TopMost = topMost;
        }
        // Token: 0x06000033 RID: 51 RVA: 0x00002790 File Offset: 0x00000990
        protected void SetExitFlag(bool exitFlag)
        {
            SetupFormBase wizard = this.GetWizard();

            wizard.Exit = exitFlag;
        }
        // Token: 0x06000032 RID: 50 RVA: 0x00002774 File Offset: 0x00000974
        protected void SetRetryFlag(bool retryFlag)
        {
            SetupFormBase wizard = this.GetWizard();

            wizard.Retry = retryFlag;
        }
        // Token: 0x0600003B RID: 59 RVA: 0x00002870 File Offset: 0x00000A70
        protected void DisableCheckLoadedTimer()
        {
            SetupFormBase wizard = this.GetWizard();

            wizard.DisableCheckLoadedTimer();
        }
        // Token: 0x06000039 RID: 57 RVA: 0x00002838 File Offset: 0x00000A38
        protected void DisableNextButtonTimer()
        {
            SetupFormBase wizard = this.GetWizard();

            wizard.DisableNextButtonTimer();
        }
        // Token: 0x06000037 RID: 55 RVA: 0x00002800 File Offset: 0x00000A00
        protected void DoBtnNextClick()
        {
            SetupFormBase wizard = this.GetWizard();

            wizard.DoBtnNextClick(false);
        }
        // Token: 0x06000029 RID: 41 RVA: 0x00002678 File Offset: 0x00000878
        internal void RemovePage(SetupWizardPage pageToRemove)
        {
            SetupFormBase wizard = this.GetWizard();

            wizard.RemovePage(pageToRemove);
        }
        // Token: 0x06000028 RID: 40 RVA: 0x0000265C File Offset: 0x0000085C
        internal void InsertPage(SetupWizardPage pageToInsert, SetupWizardPage pageInsertBefore)
        {
            SetupFormBase wizard = this.GetWizard();

            wizard.InsertPage(pageToInsert, pageInsertBefore);
        }
        // Token: 0x06000027 RID: 39 RVA: 0x00002640 File Offset: 0x00000840
        internal SetupWizardPage FindPage(string pageName)
        {
            SetupFormBase wizard = this.GetWizard();

            return(wizard.FindPage(pageName));
        }
        // Token: 0x06000025 RID: 37 RVA: 0x000025F8 File Offset: 0x000007F8
        internal void SetCancelMessageBoxMessage(string text)
        {
            SetupFormBase wizard = this.GetWizard();

            wizard.SetCancelMessageBoxMessage(text);
        }
Exemple #14
0
 // Token: 0x060001C8 RID: 456 RVA: 0x000097F9 File Offset: 0x000079F9
 private void SetupFormBase_MouseDown(object sender, MouseEventArgs e)
 {
     SetupFormBase.ReleaseCapture();
     SetupFormBase.SendMessage(base.Handle, 274, 61458, 0);
 }
        // Token: 0x06000035 RID: 53 RVA: 0x000027C8 File Offset: 0x000009C8
        protected void EnablePrintButton(bool enablePrintButton)
        {
            SetupFormBase wizard = this.GetWizard();

            wizard.EnablePrintButton(enablePrintButton);
        }
        // Token: 0x06000036 RID: 54 RVA: 0x000027E4 File Offset: 0x000009E4
        protected void PressButton(WizardButtons buttons)
        {
            SetupFormBase wizard = this.GetWizard();

            wizard.PressButton(buttons);
        }
        // Token: 0x0600002C RID: 44 RVA: 0x000026CC File Offset: 0x000008CC
        protected void SetBtnNextText(string btnNextText)
        {
            SetupFormBase wizard = this.GetWizard();

            wizard.SetBtnNextText(btnNextText);
        }
        // Token: 0x06000038 RID: 56 RVA: 0x0000281C File Offset: 0x00000A1C
        protected void EnableNextButtonTimer(int interval)
        {
            SetupFormBase wizard = this.GetWizard();

            wizard.EnableNextButtonTimer(interval);
        }
        // Token: 0x0600002D RID: 45 RVA: 0x000026E8 File Offset: 0x000008E8
        protected void SetVisibleWizardButtons(WizardButtons buttons)
        {
            SetupFormBase wizard = this.GetWizard();

            wizard.SetVisibleWizardButtons(buttons);
        }
        // Token: 0x0600003A RID: 58 RVA: 0x00002854 File Offset: 0x00000A54
        protected void EnableCheckLoadedTimer(int interval)
        {
            SetupFormBase wizard = this.GetWizard();

            wizard.EnableCheckLoadedTimer(interval);
        }
        // Token: 0x0600002E RID: 46 RVA: 0x00002704 File Offset: 0x00000904
        protected void SetPageTitle(string title)
        {
            SetupFormBase wizard = this.GetWizard();

            wizard.SetTitle(title);
        }
Exemple #22
0
 // Token: 0x060001E8 RID: 488 RVA: 0x0000B3DE File Offset: 0x000095DE
 private void UnableContactServerTextBox_LinkClicked(object sender, LinkClickedEventArgs e)
 {
     SetupFormBase.ShowHelpFromUrl(e.LinkText);
 }
        // Token: 0x0600002F RID: 47 RVA: 0x00002720 File Offset: 0x00000920
        protected void SetPrintDocument(string fullFileName)
        {
            SetupFormBase wizard = this.GetWizard();

            wizard.DocumentToPrint = fullFileName;
        }