-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDebugConsole.Designer.cs
More file actions
128 lines (122 loc) · 6.05 KB
/
DebugConsole.Designer.cs
File metadata and controls
128 lines (122 loc) · 6.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
namespace Classification_Tool_Recode
{
partial class DebugConsole
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.guna2Elipse1 = new Guna.UI2.WinForms.Guna2Elipse(this.components);
this.label7 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.richTextBox1 = new System.Windows.Forms.RichTextBox();
this.richTextBox2 = new System.Windows.Forms.RichTextBox();
this.SuspendLayout();
//
// guna2Elipse1
//
this.guna2Elipse1.TargetControl = this;
//
// label7
//
this.label7.AutoSize = true;
this.label7.Cursor = System.Windows.Forms.Cursors.Arrow;
this.label7.Font = new System.Drawing.Font("Courier New", 15.75F);
this.label7.ForeColor = System.Drawing.Color.DarkGray;
this.label7.Location = new System.Drawing.Point(8, 12);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(101, 23);
this.label7.TabIndex = 38;
this.label7.Text = "Console";
this.label7.Click += new System.EventHandler(this.label7_Click);
//
// label5
//
this.label5.AutoSize = true;
this.label5.Cursor = System.Windows.Forms.Cursors.Arrow;
this.label5.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(200)))), ((int)(((byte)(200)))));
this.label5.Location = new System.Drawing.Point(483, 9);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(47, 16);
this.label5.TabIndex = 40;
this.label5.Text = "CLOSE";
this.label5.Click += new System.EventHandler(this.label5_Click);
//
// richTextBox1
//
this.richTextBox1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(25)))), ((int)(((byte)(25)))));
this.richTextBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.richTextBox1.Font = new System.Drawing.Font("Courier New", 9F);
this.richTextBox1.ForeColor = System.Drawing.Color.White;
this.richTextBox1.Location = new System.Drawing.Point(12, 45);
this.richTextBox1.Name = "richTextBox1";
this.richTextBox1.ReadOnly = true;
this.richTextBox1.ShortcutsEnabled = false;
this.richTextBox1.Size = new System.Drawing.Size(518, 156);
this.richTextBox1.TabIndex = 41;
this.richTextBox1.Text = "";
this.richTextBox1.TextChanged += new System.EventHandler(this.richTextBox1_TextChanged);
//
// richTextBox2
//
this.richTextBox2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(25)))), ((int)(((byte)(25)))));
this.richTextBox2.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.richTextBox2.DetectUrls = false;
this.richTextBox2.Font = new System.Drawing.Font("Courier New", 9F);
this.richTextBox2.ForeColor = System.Drawing.Color.White;
this.richTextBox2.Location = new System.Drawing.Point(12, 207);
this.richTextBox2.Name = "richTextBox2";
this.richTextBox2.ReadOnly = true;
this.richTextBox2.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.None;
this.richTextBox2.ShortcutsEnabled = false;
this.richTextBox2.Size = new System.Drawing.Size(518, 17);
this.richTextBox2.TabIndex = 42;
this.richTextBox2.Text = "Commands are currently disabled.";
this.richTextBox2.KeyDown += new System.Windows.Forms.KeyEventHandler(this.richTextBox2_KeyDown);
//
// DebugConsole
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
this.ClientSize = new System.Drawing.Size(543, 236);
this.Controls.Add(this.richTextBox2);
this.Controls.Add(this.richTextBox1);
this.Controls.Add(this.label5);
this.Controls.Add(this.label7);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Name = "DebugConsole";
this.Text = "DebugConsole";
this.Load += new System.EventHandler(this.DebugConsole_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private Guna.UI2.WinForms.Guna2Elipse guna2Elipse1;
private System.Windows.Forms.Label label7;
private System.Windows.Forms.Label label5;
public System.Windows.Forms.RichTextBox richTextBox1;
public System.Windows.Forms.RichTextBox richTextBox2;
}
}