-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRecallForm.Designer.cs
More file actions
125 lines (122 loc) · 4.53 KB
/
RecallForm.Designer.cs
File metadata and controls
125 lines (122 loc) · 4.53 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
namespace Recall
{
partial class RecallForm
{
private System.ComponentModel.IContainer components = null;
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
private void InitializeComponent()
{
ButtonAdd = new Button();
ButtonRemove = new Button();
ButtonLoad = new Button();
textBox = new TextBox();
comboBox1 = new ComboBox();
ButtonEcho = new Button();
SuspendLayout();
//
// ButtonAdd
//
ButtonAdd.Location = new Point(4, 68);
ButtonAdd.Name = "ButtonAdd";
ButtonAdd.Size = new Size(105, 23);
ButtonAdd.TabIndex = 2;
ButtonAdd.Text = "Add Item";
ButtonAdd.UseVisualStyleBackColor = true;
ButtonAdd.Click += ButtonAdd_Click;
//
// ButtonRemove
//
ButtonRemove.Location = new Point(4, 97);
ButtonRemove.Name = "ButtonRemove";
ButtonRemove.Size = new Size(105, 23);
ButtonRemove.TabIndex = 3;
ButtonRemove.Text = "Remove Item";
ButtonRemove.UseVisualStyleBackColor = true;
ButtonRemove.Click += ButtonRemove_Click;
//
// ButtonLoad
//
ButtonLoad.Location = new Point(4, 126);
ButtonLoad.Name = "ButtonLoad";
ButtonLoad.Size = new Size(105, 23);
ButtonLoad.TabIndex = 4;
ButtonLoad.Text = "Load File";
ButtonLoad.UseVisualStyleBackColor = true;
ButtonLoad.Click += ButtonLoad_Click;
//
// textBox
//
textBox.AcceptsTab = true;
textBox.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
textBox.BackColor = Color.Black;
textBox.BorderStyle = BorderStyle.None;
textBox.ForeColor = Color.White;
textBox.Location = new Point(113, 7);
textBox.Multiline = true;
textBox.Name = "textBox";
textBox.ScrollBars = ScrollBars.Both;
textBox.Size = new Size(340, 142);
textBox.TabIndex = 1;
textBox.TextChanged += TextBox_TextChanged;
//
// comboBox1
//
comboBox1.FormattingEnabled = true;
comboBox1.Location = new Point(4, 7);
comboBox1.Name = "comboBox1";
comboBox1.Size = new Size(105, 23);
comboBox1.TabIndex = 0;
comboBox1.SelectedIndexChanged += ComboBox1_SelectedIndexChanged;
//
// ButtonEcho
//
ButtonEcho.Location = new Point(4, 39);
ButtonEcho.Name = "ButtonEcho";
ButtonEcho.Size = new Size(105, 23);
ButtonEcho.TabIndex = 5;
ButtonEcho.Text = "Echo to Window";
ButtonEcho.UseVisualStyleBackColor = true;
ButtonEcho.Click += ButtonEcho_Click;
//
// RecallForm
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
AutoScroll = true;
BackColor = Color.LightSlateGray;
ClientSize = new Size(453, 156);
Controls.Add(ButtonEcho);
Controls.Add(comboBox1);
Controls.Add(textBox);
Controls.Add(ButtonLoad);
Controls.Add(ButtonRemove);
Controls.Add(ButtonAdd);
KeyPreview = true;
MaximizeBox = false;
//MaximumSize = new Size(int.MaxValue, 182);
MinimumSize = new Size(463, 182);
Name = "RecallForm";
StartPosition = FormStartPosition.CenterScreen;
Text = "Recall";
TopMost = true;
FormClosing += RecallForm_FormClosing;
FormClosed += RecallForm_FormClosed;
KeyDown += RecallForm_KeyDown;
ResumeLayout(false);
PerformLayout();
}
private Button ButtonAdd;
private Button ButtonRemove;
private Button ButtonLoad;
private TextBox textBox;
internal ComboBox comboBox1;
private Button ButtonEcho;
}
}