Inheritance: System.EventArgs
        void bp_ShowNextBtnEvent(object sender, ShowBtnEventArgs e)
        {
            this.SetNextButtonEnable(e.Show);
            if (sender is SolutionProjectsPage)
            {
                mPageList.Clear();
                mPageList.AddRange(mBackupPageList);
                foreach (ProjectWrapper PW in Param.Solution.Projects)
                {
                    BasePage bp = null;
                    if (PW.IsClrProject)
                    {
                        bp = new ManageFeaturesPage(Param, PW);
                        bp.PageDescription = ManageProjectAndSolutionWizardsStrings.IDS_PAGE_DESCRIPTION_FEATURES + " \"" + PW.Name + "\"";
                        mPageList.Insert(mPageList.Count - 1, bp);
                    }

                    bp = new ManageLibrariesPage(Param, PW);
                    bp.PageDescription = ManageProjectAndSolutionWizardsStrings.IDS_PAGE_DESCRIPTION_LIBRARIES + " for the project \"" + PW.Name + "\"";
                    mPageList.Insert(mPageList.Count - 1, bp);

                }
            }
        }
 void bp_ShowBackBtnEvent(object sender, ShowBtnEventArgs e)
 {
     this.SetBackButtonEnable(e.Show);
 }
 void bp_ShowNextBtnEvent(object sender, ShowBtnEventArgs e)
 {
     this.SetNextButtonEnable(e.Show);
 }