namespace WindowsFormsApplication1 { partial class Form1 { /// /// 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() { this.pictureBox1 = new System.Windows.Forms.PictureBox(); this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog(); this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog(); this.menuStrip1 = new System.Windows.Forms.MenuStrip(); this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.saveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.loadToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.moveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.removeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.placeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.wallToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.spyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.spyEditPathToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.newMazeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); this.menuStrip1.SuspendLayout(); this.SuspendLayout(); // // pictureBox1 // this.pictureBox1.BackColor = System.Drawing.Color.White; this.pictureBox1.Location = new System.Drawing.Point(12, 41); this.pictureBox1.Name = "pictureBox1"; this.pictureBox1.Size = new System.Drawing.Size(440, 409); this.pictureBox1.TabIndex = 0; this.pictureBox1.TabStop = false; this.pictureBox1.Paint += new System.Windows.Forms.PaintEventHandler(this.pictureBox1_Paint); this.pictureBox1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pictureBox1_MouseDown); // // saveFileDialog1 // this.saveFileDialog1.FileName = "Maze"; this.saveFileDialog1.Filter = "Maze|*.txt"; // // openFileDialog1 // this.openFileDialog1.FileName = "Maze"; this.openFileDialog1.Filter = "Maze|*.txt"; // // menuStrip1 // this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.fileToolStripMenuItem, this.moveToolStripMenuItem, this.removeToolStripMenuItem, this.placeToolStripMenuItem, this.spyEditPathToolStripMenuItem}); this.menuStrip1.Location = new System.Drawing.Point(0, 0); this.menuStrip1.Name = "menuStrip1"; this.menuStrip1.Size = new System.Drawing.Size(464, 24); this.menuStrip1.TabIndex = 6; this.menuStrip1.Text = "menuStrip1"; // // fileToolStripMenuItem // this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.newMazeToolStripMenuItem, this.saveToolStripMenuItem, this.loadToolStripMenuItem}); this.fileToolStripMenuItem.Name = "fileToolStripMenuItem"; this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20); this.fileToolStripMenuItem.Text = "File"; // // saveToolStripMenuItem // this.saveToolStripMenuItem.Name = "saveToolStripMenuItem"; this.saveToolStripMenuItem.Size = new System.Drawing.Size(100, 22); this.saveToolStripMenuItem.Text = "Save"; this.saveToolStripMenuItem.Click += new System.EventHandler(this.button1_Click); // // loadToolStripMenuItem // this.loadToolStripMenuItem.Name = "loadToolStripMenuItem"; this.loadToolStripMenuItem.Size = new System.Drawing.Size(100, 22); this.loadToolStripMenuItem.Text = "Load"; this.loadToolStripMenuItem.Click += new System.EventHandler(this.button2_Click); // // moveToolStripMenuItem // this.moveToolStripMenuItem.Name = "moveToolStripMenuItem"; this.moveToolStripMenuItem.Size = new System.Drawing.Size(49, 20); this.moveToolStripMenuItem.Text = "Move"; this.moveToolStripMenuItem.Click += new System.EventHandler(this.button4_Click); // // removeToolStripMenuItem // this.removeToolStripMenuItem.Name = "removeToolStripMenuItem"; this.removeToolStripMenuItem.Size = new System.Drawing.Size(62, 20); this.removeToolStripMenuItem.Text = "Remove"; this.removeToolStripMenuItem.Click += new System.EventHandler(this.button5_Click); // // placeToolStripMenuItem // this.placeToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.wallToolStripMenuItem, this.spyToolStripMenuItem}); this.placeToolStripMenuItem.Name = "placeToolStripMenuItem"; this.placeToolStripMenuItem.Size = new System.Drawing.Size(47, 20); this.placeToolStripMenuItem.Text = "Place"; // // wallToolStripMenuItem // this.wallToolStripMenuItem.Name = "wallToolStripMenuItem"; this.wallToolStripMenuItem.Size = new System.Drawing.Size(97, 22); this.wallToolStripMenuItem.Text = "Wall"; this.wallToolStripMenuItem.Click += new System.EventHandler(this.button3_Click); // // spyToolStripMenuItem // this.spyToolStripMenuItem.Name = "spyToolStripMenuItem"; this.spyToolStripMenuItem.Size = new System.Drawing.Size(97, 22); this.spyToolStripMenuItem.Text = "Spy"; this.spyToolStripMenuItem.Click += new System.EventHandler(this.button6_Click); // // spyEditPathToolStripMenuItem // this.spyEditPathToolStripMenuItem.Name = "spyEditPathToolStripMenuItem"; this.spyEditPathToolStripMenuItem.Size = new System.Drawing.Size(96, 20); this.spyEditPathToolStripMenuItem.Text = "Spy - Edit path"; this.spyEditPathToolStripMenuItem.Click += new System.EventHandler(this.button8_Click); // // newMazeToolStripMenuItem // this.newMazeToolStripMenuItem.Name = "newMazeToolStripMenuItem"; this.newMazeToolStripMenuItem.Size = new System.Drawing.Size(152, 22); this.newMazeToolStripMenuItem.Text = "New Maze"; this.newMazeToolStripMenuItem.Click += new System.EventHandler(this.button9_Click); // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(464, 462); this.Controls.Add(this.pictureBox1); this.Controls.Add(this.menuStrip1); this.MainMenuStrip = this.menuStrip1; this.MaximizeBox = false; this.Name = "Form1"; this.ShowIcon = false; this.Text = "Editor"; this.Load += new System.EventHandler(this.Form1_Load); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); this.menuStrip1.ResumeLayout(false); this.menuStrip1.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.PictureBox pictureBox1; private System.Windows.Forms.SaveFileDialog saveFileDialog1; private System.Windows.Forms.OpenFileDialog openFileDialog1; private System.Windows.Forms.MenuStrip menuStrip1; private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem saveToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem loadToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem moveToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem removeToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem placeToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem1; private System.Windows.Forms.ToolStripMenuItem wallToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem spyToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem spyEditPathToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem newMazeToolStripMenuItem; } }