// 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;
        }
        // Token: 0x06000027 RID: 39 RVA: 0x00002640 File Offset: 0x00000840
        internal SetupWizardPage FindPage(string pageName)
        {
            SetupFormBase wizard = this.GetWizard();

            return(wizard.FindPage(pageName));
        }