-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFormAddInput.Designer.cs
118 lines (112 loc) · 4.6 KB
/
FormAddInput.Designer.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
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
namespace TheraWii
{
partial class FormAddInputs
{
/// <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.listBoxInputs = new System.Windows.Forms.ListBox();
this.labelSelectTask = new System.Windows.Forms.Label();
this.buttonAdd = new System.Windows.Forms.Button();
this.buttonCancel = new System.Windows.Forms.Button();
this.panel1 = new System.Windows.Forms.Panel();
this.panel1.SuspendLayout();
this.SuspendLayout();
//
// listBoxInputs
//
this.listBoxInputs.FormattingEnabled = true;
this.listBoxInputs.Location = new System.Drawing.Point(32, 23);
this.listBoxInputs.Name = "listBoxInputs";
this.listBoxInputs.Size = new System.Drawing.Size(156, 95);
this.listBoxInputs.TabIndex = 0;
this.listBoxInputs.SelectedIndexChanged += new System.EventHandler(this.listBoxInputs_SelectedIndexChanged);
this.listBoxInputs.DoubleClick += new System.EventHandler(this.listBoxInputs_DoubleClick);
//
// labelSelectTask
//
this.labelSelectTask.AutoSize = true;
this.labelSelectTask.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.labelSelectTask.Location = new System.Drawing.Point(63, 0);
this.labelSelectTask.Name = "labelSelectTask";
this.labelSelectTask.Size = new System.Drawing.Size(95, 20);
this.labelSelectTask.TabIndex = 1;
this.labelSelectTask.Text = "Select Input";
//
// buttonAdd
//
this.buttonAdd.Location = new System.Drawing.Point(32, 124);
this.buttonAdd.Name = "buttonAdd";
this.buttonAdd.Size = new System.Drawing.Size(75, 23);
this.buttonAdd.TabIndex = 2;
this.buttonAdd.Text = "Add";
this.buttonAdd.UseVisualStyleBackColor = true;
this.buttonAdd.Click += new System.EventHandler(this.buttonAdd_Click);
//
// buttonCancel
//
this.buttonCancel.Location = new System.Drawing.Point(113, 124);
this.buttonCancel.Name = "buttonCancel";
this.buttonCancel.Size = new System.Drawing.Size(75, 23);
this.buttonCancel.TabIndex = 3;
this.buttonCancel.Text = "Cancel";
this.buttonCancel.UseVisualStyleBackColor = true;
this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
//
// panel1
//
this.panel1.Controls.Add(this.labelSelectTask);
this.panel1.Controls.Add(this.buttonCancel);
this.panel1.Controls.Add(this.listBoxInputs);
this.panel1.Controls.Add(this.buttonAdd);
this.panel1.Location = new System.Drawing.Point(12, 12);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(221, 154);
this.panel1.TabIndex = 4;
//
// FormAddInputs
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoSize = true;
this.ClientSize = new System.Drawing.Size(246, 176);
this.Controls.Add(this.panel1);
this.KeyPreview = true;
this.Name = "FormAddInputs";
this.Text = "NewTask";
this.Load += new System.EventHandler(this.FormAddInputs_Load);
this.DoubleClick += new System.EventHandler(this.listBoxInputs_DoubleClick);
this.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.FormAddInputs_KeyPress);
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormAddInputs_FormClosing);
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.ListBox listBoxInputs;
private System.Windows.Forms.Label labelSelectTask;
private System.Windows.Forms.Button buttonAdd;
private System.Windows.Forms.Button buttonCancel;
private System.Windows.Forms.Panel panel1;
}
}