105 lines
3.6 KiB
C#
105 lines
3.6 KiB
C#
namespace SimpleTest
|
|
{
|
|
partial class frmMain
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <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.menuStrip1 = new System.Windows.Forms.MenuStrip();
|
|
this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.users1ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.users2ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.menuStrip1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// menuStrip1
|
|
//
|
|
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.fileToolStripMenuItem,
|
|
this.users1ToolStripMenuItem,
|
|
this.users2ToolStripMenuItem});
|
|
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
|
|
this.menuStrip1.Name = "menuStrip1";
|
|
this.menuStrip1.Size = new System.Drawing.Size(804, 26);
|
|
this.menuStrip1.TabIndex = 1;
|
|
this.menuStrip1.Text = "menuStrip1";
|
|
//
|
|
// fileToolStripMenuItem
|
|
//
|
|
this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.exitToolStripMenuItem});
|
|
this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
|
|
this.fileToolStripMenuItem.Size = new System.Drawing.Size(40, 22);
|
|
this.fileToolStripMenuItem.Text = "&File";
|
|
//
|
|
// exitToolStripMenuItem
|
|
//
|
|
this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
|
|
this.exitToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
|
|
this.exitToolStripMenuItem.Text = "E&xit";
|
|
//
|
|
// users1ToolStripMenuItem
|
|
//
|
|
this.users1ToolStripMenuItem.Name = "users1ToolStripMenuItem";
|
|
this.users1ToolStripMenuItem.Size = new System.Drawing.Size(70, 22);
|
|
this.users1ToolStripMenuItem.Text = "Users 1";
|
|
//
|
|
// users2ToolStripMenuItem
|
|
//
|
|
this.users2ToolStripMenuItem.Name = "users2ToolStripMenuItem";
|
|
this.users2ToolStripMenuItem.Size = new System.Drawing.Size(70, 22);
|
|
this.users2ToolStripMenuItem.Text = "Users 2";
|
|
//
|
|
// frmMain
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(804, 511);
|
|
this.Controls.Add(this.menuStrip1);
|
|
this.IsMdiContainer = true;
|
|
this.MainMenuStrip = this.menuStrip1;
|
|
this.Name = "frmMain";
|
|
this.Text = "VE-PROMS Security";
|
|
this.Load += new System.EventHandler(this.frmMain_Load);
|
|
this.menuStrip1.ResumeLayout(false);
|
|
this.menuStrip1.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.MenuStrip menuStrip1;
|
|
private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem users1ToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem users2ToolStripMenuItem;
|
|
}
|
|
}
|
|
|