ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/RomCheater/Main.Designer.cs
Revision: 15
Committed: Wed May 9 06:22:05 2012 UTC (11 years, 1 month ago) by william
File size: 5735 byte(s)
Log Message:

File Contents

# User Rev Content
1 william 5 namespace RomCheater
2     {
3 william 13 partial class Main
4 william 5 {
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 william 14 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 william 15 this.txtStatus = new System.Windows.Forms.RichTextBox();
36     this.StatusToolStrip = new System.Windows.Forms.ToolStrip();
37 william 14 ((System.ComponentModel.ISupportInitialize)(this.main_split)).BeginInit();
38 william 15 this.main_split.Panel2.SuspendLayout();
39 william 14 this.main_split.SuspendLayout();
40     this.mainmnu.SuspendLayout();
41     this.SuspendLayout();
42     //
43     // main_split
44     //
45     this.main_split.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
46     this.main_split.Dock = System.Windows.Forms.DockStyle.Fill;
47     this.main_split.Location = new System.Drawing.Point(0, 24);
48     this.main_split.Name = "main_split";
49     this.main_split.Orientation = System.Windows.Forms.Orientation.Horizontal;
50 william 15 //
51     // main_split.Panel2
52     //
53     this.main_split.Panel2.Controls.Add(this.txtStatus);
54     this.main_split.Panel2.Controls.Add(this.StatusToolStrip);
55     this.main_split.Size = new System.Drawing.Size(1229, 688);
56     this.main_split.SplitterDistance = 461;
57 william 14 this.main_split.TabIndex = 0;
58     //
59     // mainmnu
60     //
61     this.mainmnu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
62     this.mnuFile});
63     this.mainmnu.Location = new System.Drawing.Point(0, 0);
64     this.mainmnu.Name = "mainmnu";
65     this.mainmnu.Size = new System.Drawing.Size(1229, 24);
66     this.mainmnu.TabIndex = 1;
67     this.mainmnu.Text = "menuStrip1";
68     //
69     // mnuFile
70     //
71     this.mnuFile.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
72     this.mnuItemExit});
73     this.mnuFile.Name = "mnuFile";
74     this.mnuFile.Size = new System.Drawing.Size(37, 20);
75     this.mnuFile.Text = "&File";
76     //
77     // mnuItemExit
78     //
79     this.mnuItemExit.Name = "mnuItemExit";
80     this.mnuItemExit.Size = new System.Drawing.Size(152, 22);
81     this.mnuItemExit.Text = "&Exit";
82     this.mnuItemExit.Click += new System.EventHandler(this.mnuItemExit_Click);
83     //
84 william 15 // txtStatus
85     //
86     this.txtStatus.BackColor = System.Drawing.SystemColors.ControlLight;
87     this.txtStatus.Dock = System.Windows.Forms.DockStyle.Fill;
88     this.txtStatus.Location = new System.Drawing.Point(0, 25);
89     this.txtStatus.Name = "txtStatus";
90     this.txtStatus.ReadOnly = true;
91     this.txtStatus.Size = new System.Drawing.Size(1225, 194);
92     this.txtStatus.TabIndex = 0;
93     this.txtStatus.Text = "";
94     //
95     // StatusToolStrip
96     //
97     this.StatusToolStrip.Location = new System.Drawing.Point(0, 0);
98     this.StatusToolStrip.Name = "StatusToolStrip";
99     this.StatusToolStrip.Size = new System.Drawing.Size(1225, 25);
100     this.StatusToolStrip.TabIndex = 1;
101     this.StatusToolStrip.Text = "toolStrip1";
102     //
103 william 14 // Main
104     //
105     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
106 william 5 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
107 william 15 this.ClientSize = new System.Drawing.Size(1229, 712);
108 william 14 this.Controls.Add(this.main_split);
109     this.Controls.Add(this.mainmnu);
110     this.Name = "Main";
111 william 5 this.Text = "Form1";
112 william 15 this.main_split.Panel2.ResumeLayout(false);
113     this.main_split.Panel2.PerformLayout();
114 william 14 ((System.ComponentModel.ISupportInitialize)(this.main_split)).EndInit();
115     this.main_split.ResumeLayout(false);
116     this.mainmnu.ResumeLayout(false);
117     this.mainmnu.PerformLayout();
118     this.ResumeLayout(false);
119     this.PerformLayout();
120    
121 william 5 }
122    
123     #endregion
124 william 14
125     private System.Windows.Forms.SplitContainer main_split;
126     private System.Windows.Forms.MenuStrip mainmnu;
127     private System.Windows.Forms.ToolStripMenuItem mnuFile;
128     private System.Windows.Forms.ToolStripMenuItem mnuItemExit;
129 william 15 private System.Windows.Forms.RichTextBox txtStatus;
130     private System.Windows.Forms.ToolStrip StatusToolStrip;
131 william 5 }
132     }
133