hMailServer.Shared.ucWizard.AddPage C# (CSharp) Method

AddPage() public method

public AddPage ( UserControl page ) : void
page System.Windows.Forms.UserControl
return void
        public void AddPage(UserControl page)
        {
            IWizardPage wizPage = page as IWizardPage;

             if (wizPage == null)
            throw new Exception("Page is not a wizard page");

             _pages.Add(page);
        }