-
Notifications
You must be signed in to change notification settings - Fork 229
Expand file tree
/
Copy pathConsoleControl.Designer.cs
More file actions
48 lines (43 loc) · 1.76 KB
/
ConsoleControl.Designer.cs
File metadata and controls
48 lines (43 loc) · 1.76 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
namespace ConsolePanel.Implementation.CmdProcess
{
partial class ConsoleControl
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
#region Component 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.pnlClipping = new System.Windows.Forms.Panel();
this.SuspendLayout();
//
// pnlClipping
//
this.pnlClipping.Location = new System.Drawing.Point(0, 0);
this.pnlClipping.Name = "pnlClipping";
this.pnlClipping.Size = new System.Drawing.Size(128, 103);
this.pnlClipping.TabIndex = 0;
this.pnlClipping.Enter += new System.EventHandler(this.CmdPanel_Enter);
//
// ConsoleControl
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.pnlClipping);
this.ForeColor = System.Drawing.Color.White;
this.Name = "ConsoleControl";
this.Size = new System.Drawing.Size(246, 149);
this.Paint += new System.Windows.Forms.PaintEventHandler(this.ConsoleControl_Paint);
this.Enter += new System.EventHandler(this.CmdPanel_Enter);
this.Resize += new System.EventHandler(this.CmdPanel_Resize);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Panel pnlClipping;
}
}