-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEventEditor.Designer.cs
More file actions
290 lines (286 loc) · 11.3 KB
/
EventEditor.Designer.cs
File metadata and controls
290 lines (286 loc) · 11.3 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
namespace StreamStartingTimer {
partial class EventEditor {
/// <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() {
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(EventEditor));
propertyGrid1 = new PropertyGrid();
listView1 = new ListView();
Enabled = new ColumnHeader();
App = new ColumnHeader();
Payload = new ColumnHeader();
btnLoad = new Button();
btnSave = new Button();
btnCancel = new Button();
btnOK = new Button();
openFileDialog1 = new OpenFileDialog();
saveFileDialog1 = new SaveFileDialog();
btnTest = new Button();
btnShowMIU = new Button();
btnDelete = new Button();
AddVNyan = new Button();
AddMIU = new Button();
AddExe = new Button();
splitContainer1 = new SplitContainer();
((System.ComponentModel.ISupportInitialize)splitContainer1).BeginInit();
splitContainer1.Panel1.SuspendLayout();
splitContainer1.Panel2.SuspendLayout();
splitContainer1.SuspendLayout();
SuspendLayout();
//
// propertyGrid1
//
propertyGrid1.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
propertyGrid1.HelpVisible = false;
propertyGrid1.Location = new Point(0, 0);
propertyGrid1.Name = "propertyGrid1";
propertyGrid1.PropertySort = PropertySort.Categorized;
propertyGrid1.Size = new Size(193, 403);
propertyGrid1.TabIndex = 1;
propertyGrid1.ToolbarVisible = false;
propertyGrid1.PropertyValueChanged += propertyGrid1_PropertyValueChanged;
//
// listView1
//
listView1.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
listView1.CheckBoxes = true;
listView1.Columns.AddRange(new ColumnHeader[] { Enabled, App, Payload });
listView1.FullRowSelect = true;
listView1.GridLines = true;
listView1.Location = new Point(0, 0);
listView1.MultiSelect = false;
listView1.Name = "listView1";
listView1.Size = new Size(624, 403);
listView1.TabIndex = 0;
listView1.UseCompatibleStateImageBehavior = false;
listView1.View = View.Details;
listView1.ItemChecked += listView1_ItemChecked;
listView1.SelectedIndexChanged += listView1_SelectedIndexChanged;
//
// Enabled
//
Enabled.Text = "Enabled";
//
// App
//
App.Text = "App";
//
// Payload
//
Payload.Text = "Payload";
Payload.Width = 400;
//
// btnLoad
//
btnLoad.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
btnLoad.Location = new Point(515, 421);
btnLoad.Name = "btnLoad";
btnLoad.Size = new Size(75, 23);
btnLoad.TabIndex = 6;
btnLoad.Text = "&Load";
btnLoad.UseVisualStyleBackColor = true;
btnLoad.Click += btnLoad_Click;
//
// btnSave
//
btnSave.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
btnSave.Location = new Point(596, 421);
btnSave.Name = "btnSave";
btnSave.Size = new Size(75, 23);
btnSave.TabIndex = 7;
btnSave.Text = "&Save";
btnSave.UseVisualStyleBackColor = true;
btnSave.Click += btnSave_Click;
//
// btnCancel
//
btnCancel.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
btnCancel.Location = new Point(758, 421);
btnCancel.Name = "btnCancel";
btnCancel.Size = new Size(75, 23);
btnCancel.TabIndex = 9;
btnCancel.Text = "Cancel";
btnCancel.UseVisualStyleBackColor = true;
btnCancel.Click += btnCancel_Click;
//
// btnOK
//
btnOK.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
btnOK.Location = new Point(677, 421);
btnOK.Name = "btnOK";
btnOK.Size = new Size(75, 23);
btnOK.TabIndex = 8;
btnOK.Text = "OK";
btnOK.UseVisualStyleBackColor = true;
btnOK.Click += btnOK_Click;
//
// openFileDialog1
//
openFileDialog1.AutoUpgradeEnabled = false;
openFileDialog1.DefaultExt = "json";
openFileDialog1.FileName = "DefaultEvents.json";
openFileDialog1.Filter = "JSON files|*.json";
openFileDialog1.Title = "Load Event List";
//
// saveFileDialog1
//
saveFileDialog1.AutoUpgradeEnabled = false;
saveFileDialog1.DefaultExt = "json";
saveFileDialog1.FileName = "DefaultEvents.json";
saveFileDialog1.Filter = "JSON files|*.json";
saveFileDialog1.Title = "Save Event List";
//
// btnTest
//
btnTest.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
btnTest.Location = new Point(291, 421);
btnTest.Name = "btnTest";
btnTest.Size = new Size(75, 23);
btnTest.TabIndex = 4;
btnTest.Text = "&Test";
btnTest.UseVisualStyleBackColor = true;
btnTest.Click += btnTest_Click;
//
// btnShowMIU
//
btnShowMIU.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
btnShowMIU.Location = new Point(372, 421);
btnShowMIU.Name = "btnShowMIU";
btnShowMIU.Size = new Size(75, 23);
btnShowMIU.TabIndex = 5;
btnShowMIU.Text = "Sho&w MIU";
btnShowMIU.UseVisualStyleBackColor = true;
btnShowMIU.Click += btnShowMIU_Click;
//
// btnDelete
//
btnDelete.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
btnDelete.Location = new Point(210, 421);
btnDelete.Name = "btnDelete";
btnDelete.Size = new Size(75, 23);
btnDelete.TabIndex = 3;
btnDelete.Text = "&Delete";
btnDelete.UseVisualStyleBackColor = true;
btnDelete.Click += btnDelete_Click;
//
// AddVNyan
//
AddVNyan.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
AddVNyan.Location = new Point(12, 421);
AddVNyan.Name = "AddVNyan";
AddVNyan.Size = new Size(60, 23);
AddVNyan.TabIndex = 10;
AddVNyan.Text = "+&VNyan";
AddVNyan.UseVisualStyleBackColor = true;
AddVNyan.Click += AddVNyan_Click;
//
// AddMIU
//
AddMIU.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
AddMIU.Location = new Point(78, 421);
AddMIU.Name = "AddMIU";
AddMIU.Size = new Size(60, 23);
AddMIU.TabIndex = 11;
AddMIU.Text = "+&MIU";
AddMIU.UseVisualStyleBackColor = true;
AddMIU.Click += AddMIU_Click;
//
// AddExe
//
AddExe.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
AddExe.Location = new Point(144, 421);
AddExe.Name = "AddExe";
AddExe.Size = new Size(60, 23);
AddExe.TabIndex = 12;
AddExe.Text = "+&EXE";
AddExe.UseVisualStyleBackColor = true;
AddExe.Click += AddExe_Click;
//
// splitContainer1
//
splitContainer1.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
splitContainer1.Location = new Point(12, 12);
splitContainer1.Name = "splitContainer1";
//
// splitContainer1.Panel1
//
splitContainer1.Panel1.Controls.Add(listView1);
//
// splitContainer1.Panel2
//
splitContainer1.Panel2.Controls.Add(propertyGrid1);
splitContainer1.Size = new Size(821, 403);
splitContainer1.SplitterDistance = 624;
splitContainer1.TabIndex = 13;
//
// EventEditor
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(845, 456);
ControlBox = false;
Controls.Add(splitContainer1);
Controls.Add(AddExe);
Controls.Add(AddMIU);
Controls.Add(AddVNyan);
Controls.Add(btnDelete);
Controls.Add(btnShowMIU);
Controls.Add(btnTest);
Controls.Add(btnOK);
Controls.Add(btnCancel);
Controls.Add(btnSave);
Controls.Add(btnLoad);
Icon = (Icon)resources.GetObject("$this.Icon");
MaximizeBox = false;
MinimizeBox = false;
MinimumSize = new Size(799, 200);
Name = "EventEditor";
ShowInTaskbar = false;
SizeGripStyle = SizeGripStyle.Show;
StartPosition = FormStartPosition.CenterParent;
Text = "Stream Starting Timer - Event Editor";
Shown += EventEditor_Shown;
splitContainer1.Panel1.ResumeLayout(false);
splitContainer1.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)splitContainer1).EndInit();
splitContainer1.ResumeLayout(false);
ResumeLayout(false);
}
#endregion
private ListView listView1;
private ColumnHeader App;
private ColumnHeader Payload;
private ColumnHeader Enabled;
private Button btnLoad;
private Button btnSave;
private Button btnCancel;
private Button btnOK;
private OpenFileDialog openFileDialog1;
private SaveFileDialog saveFileDialog1;
private Button btnTest;
private Button btnShowMIU;
internal PropertyGrid propertyGrid1;
private Button btnDelete;
private Button AddVNyan;
private Button AddMIU;
private Button AddExe;
private SplitContainer splitContainer1;
}
}