namespace Standard { partial class MainForm { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// protected override void Dispose(bool disposing) { if (disposing) { if (components != null) { components.Dispose(); } } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm)); this.mainMenu1 = new System.Windows.Forms.MainMenu(this.components); this.menuFile = new System.Windows.Forms.MenuItem(); this.menuExit = new System.Windows.Forms.MenuItem(); this.menuOptions = new System.Windows.Forms.MenuItem(); this.menuBackground = new System.Windows.Forms.MenuItem(); this.menuBgSolid = new System.Windows.Forms.MenuItem(); this.menuBgGradient = new System.Windows.Forms.MenuItem(); this.menuBgImage = new System.Windows.Forms.MenuItem(); this.menuHelp = new System.Windows.Forms.MenuItem(); this.menuAbout = new System.Windows.Forms.MenuItem(); this.statusBar1 = new System.Windows.Forms.StatusBar(); this.statusBarPanel1 = new System.Windows.Forms.StatusBarPanel(); this.statusBarPanel2 = new System.Windows.Forms.StatusBarPanel(); this.buttonExit = new System.Windows.Forms.Button(); this.timer1 = new System.Windows.Forms.Timer(this.components); ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel2)).BeginInit(); this.SuspendLayout(); // // mainMenu1 // this.mainMenu1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] { this.menuFile, this.menuOptions, this.menuHelp}); // // menuFile // this.menuFile.Index = 0; this.menuFile.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] { this.menuExit}); this.menuFile.Text = "File"; // // menuExit // this.menuExit.Index = 0; this.menuExit.Text = "Exit"; this.menuExit.Click += new System.EventHandler(this.menuExit_Click); // // menuOptions // this.menuOptions.Index = 1; this.menuOptions.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] { this.menuBackground}); this.menuOptions.Text = "Options"; // // menuBackground // this.menuBackground.Index = 0; this.menuBackground.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] { this.menuBgSolid, this.menuBgGradient, this.menuBgImage}); this.menuBackground.Text = "Form Background..."; // // menuBgSolid // this.menuBgSolid.Index = 0; this.menuBgSolid.Text = "Color (solid)"; this.menuBgSolid.Click += new System.EventHandler(this.menuBgSolid_Click); // // menuBgGradient // this.menuBgGradient.Index = 1; this.menuBgGradient.Text = "Color (gradient)"; this.menuBgGradient.Click += new System.EventHandler(this.menuBgGradient_Click); // // menuBgImage // this.menuBgImage.Index = 2; this.menuBgImage.Text = "Image"; this.menuBgImage.Click += new System.EventHandler(this.menuBgImage_Click); // // menuHelp // this.menuHelp.Index = 2; this.menuHelp.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] { this.menuAbout}); this.menuHelp.Text = "Help"; // // menuAbout // this.menuAbout.Index = 0; this.menuAbout.Text = "About"; this.menuAbout.Click += new System.EventHandler(this.menuAbout_Click); // // statusBar1 // this.statusBar1.Location = new System.Drawing.Point(0, 199); this.statusBar1.Name = "statusBar1"; this.statusBar1.Panels.AddRange(new System.Windows.Forms.StatusBarPanel[] { this.statusBarPanel1, this.statusBarPanel2}); this.statusBar1.ShowPanels = true; this.statusBar1.Size = new System.Drawing.Size(348, 16); this.statusBar1.TabIndex = 0; // // statusBarPanel1 // this.statusBarPanel1.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Spring; this.statusBarPanel1.BorderStyle = System.Windows.Forms.StatusBarPanelBorderStyle.None; this.statusBarPanel1.Name = "statusBarPanel1"; this.statusBarPanel1.Text = "statusBarPanel1"; this.statusBarPanel1.Width = 234; // // statusBarPanel2 // this.statusBarPanel2.Alignment = System.Windows.Forms.HorizontalAlignment.Right; this.statusBarPanel2.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents; this.statusBarPanel2.BorderStyle = System.Windows.Forms.StatusBarPanelBorderStyle.None; this.statusBarPanel2.Name = "statusBarPanel2"; this.statusBarPanel2.Text = "statusBarPanel2"; this.statusBarPanel2.Width = 97; // // buttonExit // this.buttonExit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.buttonExit.FlatStyle = System.Windows.Forms.FlatStyle.System; this.buttonExit.Location = new System.Drawing.Point(272, 158); this.buttonExit.Name = "buttonExit"; this.buttonExit.Size = new System.Drawing.Size(52, 24); this.buttonExit.TabIndex = 1; this.buttonExit.Text = "Exit"; this.buttonExit.Click += new System.EventHandler(this.buttonExit_Click); // // timer1 // this.timer1.Tick += new System.EventHandler(this.timer1_Tick); // // MainForm // this.ClientSize = new System.Drawing.Size(348, 215); this.Controls.Add(this.buttonExit); this.Controls.Add(this.statusBar1); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.Menu = this.mainMenu1; this.MinimumSize = new System.Drawing.Size(250, 200); this.Name = "MainForm"; this.Text = "MainForm"; this.SizeChanged += new System.EventHandler(this.MainForm_SizeChanged); this.Closing += new System.ComponentModel.CancelEventHandler(this.MainForm_Closing); this.ResizeEnd += new System.EventHandler(this.MainForm_ResizeEnd); this.Load += new System.EventHandler(this.MainForm_Load); ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel2)).EndInit(); this.ResumeLayout(false); } #endregion private System.Windows.Forms.MainMenu mainMenu1; private System.Windows.Forms.StatusBar statusBar1; private System.Windows.Forms.MenuItem menuFile; private System.Windows.Forms.MenuItem menuExit; private System.Windows.Forms.MenuItem menuHelp; private System.Windows.Forms.MenuItem menuAbout; private System.Windows.Forms.Button buttonExit; private System.Windows.Forms.StatusBarPanel statusBarPanel1; private System.Windows.Forms.StatusBarPanel statusBarPanel2; private System.Windows.Forms.Timer timer1; private System.Windows.Forms.MenuItem menuOptions; private System.Windows.Forms.MenuItem menuBackground; private System.Windows.Forms.MenuItem menuBgSolid; private System.Windows.Forms.MenuItem menuBgGradient; private System.Windows.Forms.MenuItem menuBgImage; } // end class } // end namespace