28 |
/// </summary> |
/// </summary> |
29 |
private void InitializeComponent() |
private void InitializeComponent() |
30 |
{ |
{ |
31 |
this.components = new System.ComponentModel.Container(); |
this.main_split = new System.Windows.Forms.SplitContainer(); |
32 |
|
this.mainmnu = new System.Windows.Forms.MenuStrip(); |
33 |
|
this.mnuFile = new System.Windows.Forms.ToolStripMenuItem(); |
34 |
|
this.mnuItemExit = new System.Windows.Forms.ToolStripMenuItem(); |
35 |
|
((System.ComponentModel.ISupportInitialize)(this.main_split)).BeginInit(); |
36 |
|
this.main_split.SuspendLayout(); |
37 |
|
this.mainmnu.SuspendLayout(); |
38 |
|
this.SuspendLayout(); |
39 |
|
// |
40 |
|
// main_split |
41 |
|
// |
42 |
|
this.main_split.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
43 |
|
this.main_split.Dock = System.Windows.Forms.DockStyle.Fill; |
44 |
|
this.main_split.Location = new System.Drawing.Point(0, 24); |
45 |
|
this.main_split.Name = "main_split"; |
46 |
|
this.main_split.Orientation = System.Windows.Forms.Orientation.Horizontal; |
47 |
|
this.main_split.Size = new System.Drawing.Size(1229, 557); |
48 |
|
this.main_split.SplitterDistance = 392; |
49 |
|
this.main_split.TabIndex = 0; |
50 |
|
// |
51 |
|
// mainmnu |
52 |
|
// |
53 |
|
this.mainmnu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { |
54 |
|
this.mnuFile}); |
55 |
|
this.mainmnu.Location = new System.Drawing.Point(0, 0); |
56 |
|
this.mainmnu.Name = "mainmnu"; |
57 |
|
this.mainmnu.Size = new System.Drawing.Size(1229, 24); |
58 |
|
this.mainmnu.TabIndex = 1; |
59 |
|
this.mainmnu.Text = "menuStrip1"; |
60 |
|
// |
61 |
|
// mnuFile |
62 |
|
// |
63 |
|
this.mnuFile.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { |
64 |
|
this.mnuItemExit}); |
65 |
|
this.mnuFile.Name = "mnuFile"; |
66 |
|
this.mnuFile.Size = new System.Drawing.Size(37, 20); |
67 |
|
this.mnuFile.Text = "&File"; |
68 |
|
// |
69 |
|
// mnuItemExit |
70 |
|
// |
71 |
|
this.mnuItemExit.Name = "mnuItemExit"; |
72 |
|
this.mnuItemExit.Size = new System.Drawing.Size(152, 22); |
73 |
|
this.mnuItemExit.Text = "&Exit"; |
74 |
|
this.mnuItemExit.Click += new System.EventHandler(this.mnuItemExit_Click); |
75 |
|
// |
76 |
|
// Main |
77 |
|
// |
78 |
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); |
79 |
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; |
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; |
80 |
|
this.ClientSize = new System.Drawing.Size(1229, 581); |
81 |
|
this.Controls.Add(this.main_split); |
82 |
|
this.Controls.Add(this.mainmnu); |
83 |
|
this.Name = "Main"; |
84 |
this.Text = "Form1"; |
this.Text = "Form1"; |
85 |
|
((System.ComponentModel.ISupportInitialize)(this.main_split)).EndInit(); |
86 |
|
this.main_split.ResumeLayout(false); |
87 |
|
this.mainmnu.ResumeLayout(false); |
88 |
|
this.mainmnu.PerformLayout(); |
89 |
|
this.ResumeLayout(false); |
90 |
|
this.PerformLayout(); |
91 |
|
|
92 |
} |
} |
93 |
|
|
94 |
#endregion |
#endregion |
95 |
|
|
96 |
|
private System.Windows.Forms.SplitContainer main_split; |
97 |
|
private System.Windows.Forms.MenuStrip mainmnu; |
98 |
|
private System.Windows.Forms.ToolStripMenuItem mnuFile; |
99 |
|
private System.Windows.Forms.ToolStripMenuItem mnuItemExit; |
100 |
} |
} |
101 |
} |
} |
102 |
|
|