-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConfigGUI.cs
40 lines (37 loc) · 1.19 KB
/
ConfigGUI.cs
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
using System.Windows.Forms;
namespace hashashin.FxCommands
{
partial class FxCommandsActionConfWnd
{
private System.ComponentModel.IContainer components = null;
private TextBox TextCommand;
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
private void InitializeComponent()
{
TextCommand = new TextBox();
SuspendLayout();
//
// TextCommand
//
TextCommand.Location = new System.Drawing.Point(0, 79);
TextCommand.Name = "TextCommand";
TextCommand.Size = new System.Drawing.Size(815, 30);
TextCommand.TabIndex = 9;
TextCommand.Text = "";
AutoScaleDimensions = new System.Drawing.SizeF(10F, 23F);
AutoScaleMode = AutoScaleMode.Font;
Controls.Add(TextCommand);
Name = "FxCommandsActionConfWnd";
Size = new System.Drawing.Size(818, 211);
ResumeLayout(false);
PerformLayout();
}
}
}