namespace CodeImp.DoomBuilder.Interface { partial class MainForm { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if(disposing && (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() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm)); this.menumain = new System.Windows.Forms.MenuStrip(); this.menufile = new System.Windows.Forms.ToolStripMenuItem(); this.itemnewmap = new System.Windows.Forms.ToolStripMenuItem(); this.itemopenmap = new System.Windows.Forms.ToolStripMenuItem(); this.itemclosemap = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator(); this.itemsavemap = new System.Windows.Forms.ToolStripMenuItem(); this.itemsavemapas = new System.Windows.Forms.ToolStripMenuItem(); this.itemsavemapinto = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripSeparator(); this.itemexit = new System.Windows.Forms.ToolStripMenuItem(); this.toolbar = new System.Windows.Forms.ToolStrip(); this.statusbar = new System.Windows.Forms.StatusStrip(); this.statuslabel = new System.Windows.Forms.ToolStripStatusLabel(); this.panelinfo = new System.Windows.Forms.Panel(); this.display = new System.Windows.Forms.PictureBox(); this.menumain.SuspendLayout(); this.statusbar.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.display)).BeginInit(); this.SuspendLayout(); // // menumain // this.menumain.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.menufile}); this.menumain.Location = new System.Drawing.Point(0, 0); this.menumain.Name = "menumain"; this.menumain.Size = new System.Drawing.Size(731, 24); this.menumain.TabIndex = 0; this.menumain.Text = "menuStrip1"; // // menufile // this.menufile.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.itemnewmap, this.itemopenmap, this.itemclosemap, this.toolStripMenuItem1, this.itemsavemap, this.itemsavemapas, this.itemsavemapinto, this.toolStripMenuItem2, this.itemexit}); this.menufile.Name = "menufile"; this.menufile.Size = new System.Drawing.Size(35, 20); this.menufile.Text = "File"; // // itemnewmap // this.itemnewmap.Name = "itemnewmap"; this.itemnewmap.Size = new System.Drawing.Size(167, 22); this.itemnewmap.Text = "New Map"; this.itemnewmap.Click += new System.EventHandler(this.itemnewmap_Click); // // itemopenmap // this.itemopenmap.Name = "itemopenmap"; this.itemopenmap.Size = new System.Drawing.Size(167, 22); this.itemopenmap.Text = "Open Map..."; // // itemclosemap // this.itemclosemap.Name = "itemclosemap"; this.itemclosemap.Size = new System.Drawing.Size(167, 22); this.itemclosemap.Text = "Close Map"; this.itemclosemap.Click += new System.EventHandler(this.itemclosemap_Click); // // toolStripMenuItem1 // this.toolStripMenuItem1.Name = "toolStripMenuItem1"; this.toolStripMenuItem1.Size = new System.Drawing.Size(164, 6); // // itemsavemap // this.itemsavemap.Name = "itemsavemap"; this.itemsavemap.Size = new System.Drawing.Size(167, 22); this.itemsavemap.Text = "Save Map"; // // itemsavemapas // this.itemsavemapas.Name = "itemsavemapas"; this.itemsavemapas.Size = new System.Drawing.Size(167, 22); this.itemsavemapas.Text = "Save Map As..."; // // itemsavemapinto // this.itemsavemapinto.Name = "itemsavemapinto"; this.itemsavemapinto.Size = new System.Drawing.Size(167, 22); this.itemsavemapinto.Text = "Save Map Into..."; // // toolStripMenuItem2 // this.toolStripMenuItem2.Name = "toolStripMenuItem2"; this.toolStripMenuItem2.Size = new System.Drawing.Size(164, 6); // // itemexit // this.itemexit.Name = "itemexit"; this.itemexit.Size = new System.Drawing.Size(167, 22); this.itemexit.Text = "Exit"; this.itemexit.Click += new System.EventHandler(this.itemexit_Click); // // toolbar // this.toolbar.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden; this.toolbar.Location = new System.Drawing.Point(0, 24); this.toolbar.Name = "toolbar"; this.toolbar.Size = new System.Drawing.Size(731, 25); this.toolbar.TabIndex = 1; this.toolbar.Text = "toolStrip1"; // // statusbar // this.statusbar.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.statusbar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.statuslabel}); this.statusbar.Location = new System.Drawing.Point(0, 523); this.statusbar.Name = "statusbar"; this.statusbar.Size = new System.Drawing.Size(731, 22); this.statusbar.TabIndex = 2; // // statuslabel // this.statuslabel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.statuslabel.Name = "statuslabel"; this.statuslabel.Size = new System.Drawing.Size(716, 17); this.statuslabel.Spring = true; this.statuslabel.Text = "Initializing user interface..."; this.statuslabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // panelinfo // this.panelinfo.Dock = System.Windows.Forms.DockStyle.Bottom; this.panelinfo.Location = new System.Drawing.Point(0, 422); this.panelinfo.Name = "panelinfo"; this.panelinfo.Size = new System.Drawing.Size(731, 101); this.panelinfo.TabIndex = 4; // // display // this.display.BackColor = System.Drawing.SystemColors.AppWorkspace; this.display.BackgroundImage = global::CodeImp.DoomBuilder.Properties.Resources.Splash2; this.display.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center; this.display.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.display.Dock = System.Windows.Forms.DockStyle.Fill; this.display.ErrorImage = null; this.display.InitialImage = null; this.display.Location = new System.Drawing.Point(0, 49); this.display.Name = "display"; this.display.Size = new System.Drawing.Size(731, 373); this.display.TabIndex = 5; this.display.TabStop = false; // // MainForm // this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None; this.ClientSize = new System.Drawing.Size(731, 545); this.Controls.Add(this.display); this.Controls.Add(this.panelinfo); this.Controls.Add(this.statusbar); this.Controls.Add(this.toolbar); this.Controls.Add(this.menumain); this.DoubleBuffered = true; this.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.KeyPreview = true; this.MainMenuStrip = this.menumain; this.Name = "MainForm"; this.StartPosition = System.Windows.Forms.FormStartPosition.Manual; this.Text = "Doom Builder"; this.Move += new System.EventHandler(this.MainForm_Move); this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing); this.ResizeEnd += new System.EventHandler(this.MainForm_ResizeEnd); this.Load += new System.EventHandler(this.MainForm_Load); this.menumain.ResumeLayout(false); this.menumain.PerformLayout(); this.statusbar.ResumeLayout(false); this.statusbar.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.display)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.MenuStrip menumain; private System.Windows.Forms.ToolStrip toolbar; private System.Windows.Forms.StatusStrip statusbar; private System.Windows.Forms.Panel panelinfo; private System.Windows.Forms.PictureBox display; private System.Windows.Forms.ToolStripMenuItem menufile; private System.Windows.Forms.ToolStripMenuItem itemnewmap; private System.Windows.Forms.ToolStripMenuItem itemopenmap; private System.Windows.Forms.ToolStripSeparator toolStripMenuItem1; private System.Windows.Forms.ToolStripMenuItem itemsavemap; private System.Windows.Forms.ToolStripMenuItem itemsavemapas; private System.Windows.Forms.ToolStripMenuItem itemsavemapinto; private System.Windows.Forms.ToolStripSeparator toolStripMenuItem2; private System.Windows.Forms.ToolStripMenuItem itemexit; private System.Windows.Forms.ToolStripStatusLabel statuslabel; private System.Windows.Forms.ToolStripMenuItem itemclosemap; } }