ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/RomCheater/Main.Designer.cs
Revision: 17
Committed: Wed May 9 08:02:18 2012 UTC (11 years ago) by william
File size: 7532 byte(s)
Log Message:
implement basic logging support

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 william 17 this.tabControl1 = new System.Windows.Forms.TabControl();
33     this.MainTab = new System.Windows.Forms.TabPage();
34     this.tabPage2 = new System.Windows.Forms.TabPage();
35 william 14 this.mainmnu = new System.Windows.Forms.MenuStrip();
36     this.mnuFile = new System.Windows.Forms.ToolStripMenuItem();
37     this.mnuItemExit = new System.Windows.Forms.ToolStripMenuItem();
38 william 17 this.logwriter = new RomCheater.Logging.LogWriter();
39 william 14 ((System.ComponentModel.ISupportInitialize)(this.main_split)).BeginInit();
40 william 16 this.main_split.Panel1.SuspendLayout();
41 william 15 this.main_split.Panel2.SuspendLayout();
42 william 14 this.main_split.SuspendLayout();
43 william 17 this.tabControl1.SuspendLayout();
44 william 14 this.mainmnu.SuspendLayout();
45     this.SuspendLayout();
46     //
47     // main_split
48     //
49     this.main_split.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
50     this.main_split.Dock = System.Windows.Forms.DockStyle.Fill;
51     this.main_split.Location = new System.Drawing.Point(0, 24);
52     this.main_split.Name = "main_split";
53     this.main_split.Orientation = System.Windows.Forms.Orientation.Horizontal;
54 william 15 //
55 william 16 // main_split.Panel1
56     //
57     this.main_split.Panel1.Controls.Add(this.tabControl1);
58     //
59 william 15 // main_split.Panel2
60     //
61 william 17 this.main_split.Panel2.Controls.Add(this.logwriter);
62 william 15 this.main_split.Size = new System.Drawing.Size(1229, 688);
63 william 16 this.main_split.SplitterDistance = 534;
64 william 14 this.main_split.TabIndex = 0;
65     //
66 william 16 // tabControl1
67 william 15 //
68 william 16 this.tabControl1.Controls.Add(this.MainTab);
69     this.tabControl1.Controls.Add(this.tabPage2);
70     this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
71     this.tabControl1.Location = new System.Drawing.Point(0, 0);
72     this.tabControl1.Name = "tabControl1";
73     this.tabControl1.SelectedIndex = 0;
74     this.tabControl1.Size = new System.Drawing.Size(1225, 530);
75     this.tabControl1.TabIndex = 0;
76 william 15 //
77 william 16 // MainTab
78     //
79     this.MainTab.Location = new System.Drawing.Point(4, 22);
80     this.MainTab.Name = "MainTab";
81     this.MainTab.Padding = new System.Windows.Forms.Padding(3);
82     this.MainTab.Size = new System.Drawing.Size(1217, 504);
83     this.MainTab.TabIndex = 0;
84     this.MainTab.Text = "tabPage1";
85     this.MainTab.UseVisualStyleBackColor = true;
86     //
87     // tabPage2
88     //
89     this.tabPage2.Location = new System.Drawing.Point(4, 22);
90     this.tabPage2.Name = "tabPage2";
91     this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
92 william 17 this.tabPage2.Size = new System.Drawing.Size(1217, 504);
93 william 16 this.tabPage2.TabIndex = 1;
94     this.tabPage2.Text = "tabPage2";
95     this.tabPage2.UseVisualStyleBackColor = true;
96     //
97 william 17 // mainmnu
98 william 16 //
99 william 17 this.mainmnu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
100     this.mnuFile});
101     this.mainmnu.Location = new System.Drawing.Point(0, 0);
102     this.mainmnu.Name = "mainmnu";
103     this.mainmnu.Size = new System.Drawing.Size(1229, 24);
104     this.mainmnu.TabIndex = 1;
105     this.mainmnu.Text = "menuStrip1";
106 william 16 //
107 william 17 // mnuFile
108 william 16 //
109 william 17 this.mnuFile.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
110     this.mnuItemExit});
111     this.mnuFile.Name = "mnuFile";
112     this.mnuFile.Size = new System.Drawing.Size(37, 20);
113     this.mnuFile.Text = "&File";
114 william 16 //
115 william 17 // mnuItemExit
116     //
117     this.mnuItemExit.Name = "mnuItemExit";
118     this.mnuItemExit.Size = new System.Drawing.Size(92, 22);
119     this.mnuItemExit.Text = "&Exit";
120     this.mnuItemExit.Click += new System.EventHandler(this.mnuItemExit_Click);
121     //
122     // logwriter
123     //
124     this.logwriter.Dock = System.Windows.Forms.DockStyle.Fill;
125     this.logwriter.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
126     this.logwriter.Location = new System.Drawing.Point(0, 0);
127     this.logwriter.Margin = new System.Windows.Forms.Padding(0);
128     this.logwriter.Name = "logwriter";
129     this.logwriter.RedirectConsoleOutput = true;
130     this.logwriter.Size = new System.Drawing.Size(1225, 146);
131     this.logwriter.TabIndex = 2;
132     //
133 william 14 // Main
134     //
135     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
136 william 5 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
137 william 16 this.BackColor = System.Drawing.SystemColors.ControlLight;
138 william 15 this.ClientSize = new System.Drawing.Size(1229, 712);
139 william 14 this.Controls.Add(this.main_split);
140     this.Controls.Add(this.mainmnu);
141     this.Name = "Main";
142 william 5 this.Text = "Form1";
143 william 17 this.Load += new System.EventHandler(this.Main_Load);
144 william 16 this.main_split.Panel1.ResumeLayout(false);
145 william 15 this.main_split.Panel2.ResumeLayout(false);
146 william 14 ((System.ComponentModel.ISupportInitialize)(this.main_split)).EndInit();
147     this.main_split.ResumeLayout(false);
148 william 17 this.tabControl1.ResumeLayout(false);
149 william 14 this.mainmnu.ResumeLayout(false);
150     this.mainmnu.PerformLayout();
151     this.ResumeLayout(false);
152     this.PerformLayout();
153    
154 william 5 }
155    
156     #endregion
157 william 14
158     private System.Windows.Forms.SplitContainer main_split;
159     private System.Windows.Forms.MenuStrip mainmnu;
160     private System.Windows.Forms.ToolStripMenuItem mnuFile;
161     private System.Windows.Forms.ToolStripMenuItem mnuItemExit;
162 william 16 private System.Windows.Forms.TabControl tabControl1;
163     private System.Windows.Forms.TabPage MainTab;
164     private System.Windows.Forms.TabPage tabPage2;
165 william 17 private RomCheater.Logging.LogWriter logwriter;
166 william 5 }
167     }
168