1 namespace standardApplications
2 {
3 partial class Form1
4 {
5 ///
6 /// Required designer variable.
7 ///
8 private System.ComponentModel.IContainer components = null;
9
10 ///
11 /// Clean up any resources being used.
12 ///
13 /// true if managed resources should be disposed; otherwise, false.
14 protected override void Dispose(bool disposing)
15 {
16 if (disposing && (components != null))
17 {
18 components.Dispose();
19 }
20 base.Dispose(disposing);
21 }
22
23 #region Windows Form Designer generated code
24
25 ///
26 /// Required method for Designer support - do not modify
27 /// the contents of this method with the code editor.
28 ///
29 private void InitializeComponent()
30 {
31 this.menuStrip1 = new System.Windows.Forms.MenuStrip();
32 this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
33 this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
34 this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
35 this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
36 this.statusStrip1 = new System.Windows.Forms.StatusStrip();
37 this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
38 this.menuStrip1.SuspendLayout();
39 this.statusStrip1.SuspendLayout();
40 this.SuspendLayout();
41 //
42 // menuStrip1
43 //
44 this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
45 this.fileToolStripMenuItem,
46 this.helpToolStripMenuItem});
47 this.menuStrip1.Location = new System.Drawing.Point(0, 0);
48 this.menuStrip1.Name = "menuStrip1";
49 this.menuStrip1.Size = new System.Drawing.Size(392, 24);
50 this.menuStrip1.TabIndex = 0;
51 this.menuStrip1.Text = "menuStrip1";
52 //
53 // fileToolStripMenuItem
54 //
55 this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
56 this.exitToolStripMenuItem});
57 this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
58 this.fileToolStripMenuItem.Text = "&File";
59 //
60 // exitToolStripMenuItem
61 //
62 this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
63 this.exitToolStripMenuItem.Text = "E&xit";
64 this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
65 //
66 // helpToolStripMenuItem
67 //
68 this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
69 this.aboutToolStripMenuItem});
70 this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
71 this.helpToolStripMenuItem.Text = "&Help";
72 //
73 // aboutToolStripMenuItem
74 //
75 this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
76 this.aboutToolStripMenuItem.Text = "&About...";
77 this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
78 //
79 // statusStrip1
80 //
81 this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
82 this.toolStripStatusLabel1});
83 this.statusStrip1.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.Table;
84 this.statusStrip1.Location = new System.Drawing.Point(0, 263);
85 this.statusStrip1.Name = "statusStrip1";
86 this.statusStrip1.Size = new System.Drawing.Size(392, 23);
87 this.statusStrip1.TabIndex = 1;
88 this.statusStrip1.Text = "statusStrip1";
89 //
90 // toolStripStatusLabel1
91 //
92 this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
93 this.toolStripStatusLabel1.Text = "toolStripStatusLabel1";
94 //
95 // Form1
96 //
97 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
98 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
99 this.ClientSize = new System.Drawing.Size(392, 286);
100 this.Controls.Add(this.statusStrip1);
101 this.Controls.Add(this.menuStrip1);
102 this.MainMenuStrip = this.menuStrip1;
103 this.MinimumSize = new System.Drawing.Size(400, 320);
104 this.Name = "Form1";
105 this.Text = "Form1";
106 this.Load += new System.EventHandler(this.Form1_Load);
107 this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
108 this.menuStrip1.ResumeLayout(false);
109 this.statusStrip1.ResumeLayout(false);
110 this.ResumeLayout(false);
111 this.PerformLayout();
112
113 }
114
115 #endregion
116
117 private System.Windows.Forms.MenuStrip menuStrip1;
118 private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
119 private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem;
120 private System.Windows.Forms.ToolStripMenuItem helpToolStripMenuItem;
121 private System.Windows.Forms.ToolStripMenuItem aboutToolStripMenuItem;
122 private System.Windows.Forms.StatusStrip statusStrip1;
123 private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel1;
124 }
125 }
126