namespace MultiSDISample { partial class TopLevelForm { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// 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.textBox = new System.Windows.Forms.TextBox(); this.menuStrip = new System.Windows.Forms.MenuStrip(); this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.newWindowToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); this.exitWindowToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.windowToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.openFileDialog = new System.Windows.Forms.OpenFileDialog(); this.menuStrip.SuspendLayout(); this.SuspendLayout(); // // textBox // this.textBox.Dock = System.Windows.Forms.DockStyle.Fill; this.textBox.Location = new System.Drawing.Point(0, 24); this.textBox.Multiline = true; this.textBox.Name = "textBox"; this.textBox.Size = new System.Drawing.Size(320, 84); this.textBox.TabIndex = 4; // // menuStrip // this.menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.fileToolStripMenuItem, this.windowToolStripMenuItem}); this.menuStrip.Location = new System.Drawing.Point(0, 0); this.menuStrip.Name = "menuStrip"; this.menuStrip.Size = new System.Drawing.Size(320, 24); this.menuStrip.TabIndex = 5; this.menuStrip.Text = "menuStrip"; // // fileToolStripMenuItem // this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.newWindowToolStripMenuItem, this.toolStripMenuItem1, this.exitWindowToolStripMenuItem}); this.fileToolStripMenuItem.Name = "fileToolStripMenuItem"; this.fileToolStripMenuItem.Size = new System.Drawing.Size(35, 20); this.fileToolStripMenuItem.Text = "&File"; // // newWindowToolStripMenuItem // this.newWindowToolStripMenuItem.Name = "newWindowToolStripMenuItem"; this.newWindowToolStripMenuItem.Size = new System.Drawing.Size(136, 22); this.newWindowToolStripMenuItem.Text = "&New Window"; this.newWindowToolStripMenuItem.Click += new System.EventHandler(this.newWindowToolStripMenuItem_Click); // // toolStripMenuItem1 // this.toolStripMenuItem1.Name = "toolStripMenuItem1"; this.toolStripMenuItem1.Size = new System.Drawing.Size(136, 22); this.toolStripMenuItem1.Text = "&Open"; this.toolStripMenuItem1.Click += new System.EventHandler(this.openToolStripMenuItem_Click); // // exitWindowToolStripMenuItem // this.exitWindowToolStripMenuItem.Name = "exitWindowToolStripMenuItem"; this.exitWindowToolStripMenuItem.Size = new System.Drawing.Size(136, 22); this.exitWindowToolStripMenuItem.Text = "E&xit"; this.exitWindowToolStripMenuItem.Click += new System.EventHandler(this.exitWindowToolStripMenuItem_Click); // // windowToolStripMenuItem // this.windowToolStripMenuItem.Name = "windowToolStripMenuItem"; this.windowToolStripMenuItem.Size = new System.Drawing.Size(57, 20); this.windowToolStripMenuItem.Text = "&Window"; // // openFileDialog // this.openFileDialog.FileName = "openFileDialog"; this.openFileDialog.Filter = "Text files|*.txt|All files|*.*"; // // TopLevelForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(320, 108); this.Controls.Add(this.textBox); this.Controls.Add(this.menuStrip); this.MainMenuStrip = this.menuStrip; this.Name = "TopLevelForm"; this.Text = "Top-Level Form"; this.menuStrip.ResumeLayout(false); this.menuStrip.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.TextBox textBox; private System.Windows.Forms.MenuStrip menuStrip; private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem newWindowToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem exitWindowToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem windowToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem1; private System.Windows.Forms.OpenFileDialog openFileDialog; } }