using System; using System.Collections; using System.ComponentModel; using System.Drawing; using System.Windows.Forms; namespace TestWizard { public class TestWizardSheet : Wizard.UI.WizardSheet { private System.ComponentModel.IContainer components = null; public TestWizardSheet() { // This call is required by the Windows Form Designer. InitializeComponent(); this.Pages.Add(new WelcomePage()); this.Pages.Add(new MiddlePage()); } /// /// Clean up any resources being used. /// protected override void Dispose( bool disposing ) { if( disposing ) { if (components != null) { components.Dispose(); } } base.Dispose( disposing ); } #region Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(TestWizardSheet)); this.SuspendLayout(); // // TestWizardSheet // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(384, 141); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.MaximizeBox = false; this.Name = "TestWizardSheet"; this.Text = "Credential Manager"; this.ResumeLayout(false); } #endregion } }