namespace DeviceMenuTesting{
partial class Form1
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
private System.Windows.Forms.MainMenu mainMenu1;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null)) {
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.mainMenu1 = new System.Windows.Forms.MainMenu();
this.menuItemMenuMenu = new System.Windows.Forms.MenuItem();
this.menuItemQuit = new System.Windows.Forms.MenuItem();
this.textBox1 = new System.Windows.Forms.TextBox();
this.labelPause = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// mainMenu1
//
this.mainMenu1.MenuItems.Add(this.menuItemMenuMenu);
this.mainMenu1.MenuItems.Add(this.menuItemQuit);
//
// menuItemMenuMenu
//
this.menuItemMenuMenu.Text = "Menu";
//
// menuItemQuit
//
this.menuItemQuit.Text = "Quit";
this.menuItemQuit.Click += new System.EventHandler(this.menuItemQuit_Click);
//
// textBox1
//
this.textBox1.Dock = System.Windows.Forms.DockStyle.Fill;
this.textBox1.Location = new System.Drawing.Point(0, 0);
this.textBox1.Multiline = true;
this.textBox1.Name = "textBox1";
this.textBox1.ReadOnly = true;
this.textBox1.Size = new System.Drawing.Size(176, 180);
this.textBox1.TabIndex = 0;
this.textBox1.Text = "textBox1";
//
// labelPause
//
this.labelPause.BackColor = System.Drawing.SystemColors.Info;
this.labelPause.Dock = System.Windows.Forms.DockStyle.Top;
this.labelPause.Location = new System.Drawing.Point(0, 0);
this.labelPause.Name = "labelPause";
this.labelPause.Size = new System.Drawing.Size(176, 22);
this.labelPause.Text = "label1";
this.labelPause.Visible = false;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.AutoScroll = true;
this.ClientSize = new System.Drawing.Size(176, 180);
this.Controls.Add(this.labelPause);
this.Controls.Add(this.textBox1);
this.Menu = this.mainMenu1;
this.Name = "Form1";
this.Text = "DeviceMenuTesting";
this.Load += new System.EventHandler(this.Form1_Load);
this.Closing += new System.ComponentModel.CancelEventHandler(this.Form1_Closing);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.TextBox textBox1;
private System.Windows.Forms.MenuItem menuItemQuit;
private System.Windows.Forms.MenuItem menuItemMenuMenu;
private System.Windows.Forms.Label labelPause;
}
}
|