ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/RomCheater/Main.Designer.cs
Revision: 14
Committed: Wed May 9 06:18:28 2012 UTC (11 years, 1 month ago) by william
File size: 4183 byte(s)
Log Message:
+ add main menu strop
+ add split contanier

File Contents

# Content
1 namespace RomCheater
2 {
3 partial class Main
4 {
5 /// <summary>
6 /// Required designer variable.
7 /// </summary>
8 private System.ComponentModel.IContainer components = null;
9
10 /// <summary>
11 /// Clean up any resources being used.
12 /// </summary>
13 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
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 /// <summary>
26 /// Required method for Designer support - do not modify
27 /// the contents of this method with the code editor.
28 /// </summary>
29 private void InitializeComponent()
30 {
31 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;
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";
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
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