using System; using System.Collections; using System.ComponentModel; using System.Drawing; using System.Windows.Forms; namespace Wizard.UI { public class InternalWizardPage : Wizard.UI.WizardPage { public Wizard.UI.WizardBanner Banner; private System.ComponentModel.IContainer components = null; public InternalWizardPage() { // This call is required by the Windows Form Designer. InitializeComponent(); // TODO: Add any initialization after the InitializeComponent call } /// /// 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() { this.Banner = new Wizard.UI.WizardBanner(); this.SuspendLayout(); // // Banner // this.Banner.BackColor = System.Drawing.SystemColors.Window; this.Banner.Dock = System.Windows.Forms.DockStyle.Top; this.Banner.Location = new System.Drawing.Point(0, 0); this.Banner.Name = "Banner"; this.Banner.Size = new System.Drawing.Size(432, 64); this.Banner.Subtitle = "Subtitle"; this.Banner.TabIndex = 0; this.Banner.Title = "Title"; // // InternalWizardPage // this.Controls.Add(this.Banner); this.Name = "InternalWizardPage"; this.Size = new System.Drawing.Size(432, 150); this.ResumeLayout(false); } #endregion } }