corrade-vassal – Blame information for rev 4

Subversion Repositories:
Rev:
Rev Author Line No. Line
2 zed 1 using System;
2 using System.ComponentModel;
3 using System.Drawing;
4 using System.Windows.Forms;
5  
6 namespace Vassal
7 {
8 partial class Vassal
9 {
10 /// <summary>
11 /// Required designer variable.
12 /// </summary>
13 private IContainer components = null;
14  
15 /// <summary>
16 /// Clean up any resources being used.
17 /// </summary>
18 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
19 protected override void Dispose(bool disposing)
20 {
21 if (disposing && (components != null))
22 {
23 components.Dispose();
24 }
25 base.Dispose(disposing);
26 }
27  
28 #region Windows Form Designer generated code
29  
30 /// <summary>
31 /// Required method for Designer support - do not modify
32 /// the contents of this method with the code editor.
33 /// </summary>
34 private void InitializeComponent()
35 {
4 vero 36 this.components = new System.ComponentModel.Container();
2 zed 37 System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Vassal));
38 this.pictureBox1 = new System.Windows.Forms.PictureBox();
39 this.Tabs = new System.Windows.Forms.TabControl();
40 this.OverviewTab = new System.Windows.Forms.TabPage();
41 this.groupBox10 = new System.Windows.Forms.GroupBox();
42 this.RegionAvatarsMap = new System.Windows.Forms.PictureBox();
43 this.groupBox9 = new System.Windows.Forms.GroupBox();
44 this.Objects = new System.Windows.Forms.Label();
45 this.groupBox8 = new System.Windows.Forms.GroupBox();
46 this.ScriptTime = new System.Windows.Forms.Label();
47 this.groupBox7 = new System.Windows.Forms.GroupBox();
48 this.ActiveScripts = new System.Windows.Forms.Label();
49 this.groupBox6 = new System.Windows.Forms.GroupBox();
50 this.PhysicsFPS = new System.Windows.Forms.Label();
51 this.groupBox5 = new System.Windows.Forms.GroupBox();
52 this.FPS = new System.Windows.Forms.Label();
53 this.groupBox4 = new System.Windows.Forms.GroupBox();
54 this.Dilation = new System.Windows.Forms.Label();
55 this.groupBox3 = new System.Windows.Forms.GroupBox();
56 this.LastLag = new System.Windows.Forms.Label();
57 this.groupBox2 = new System.Windows.Forms.GroupBox();
58 this.Agents = new System.Windows.Forms.Label();
59 this.TopScriptsTab = new System.Windows.Forms.TabPage();
3 eva 60 this.label1 = new System.Windows.Forms.Label();
61 this.TopScriptsFilter = new System.Windows.Forms.TextBox();
62 this.ReturnTopScriptsButton = new System.Windows.Forms.Button();
63 this.button3 = new System.Windows.Forms.Button();
2 zed 64 this.TopScriptsGridView = new System.Windows.Forms.DataGridView();
65 this.TopScriptsScore = new System.Windows.Forms.DataGridViewTextBoxColumn();
66 this.TopScriptsTaskName = new System.Windows.Forms.DataGridViewTextBoxColumn();
67 this.TopScriptsUUID = new System.Windows.Forms.DataGridViewTextBoxColumn();
68 this.TopScriptsOwner = new System.Windows.Forms.DataGridViewTextBoxColumn();
69 this.TopScriptsPosition = new System.Windows.Forms.DataGridViewTextBoxColumn();
70 this.TopCollidersTab = new System.Windows.Forms.TabPage();
3 eva 71 this.label2 = new System.Windows.Forms.Label();
72 this.TopCollidersFilter = new System.Windows.Forms.TextBox();
73 this.ReturnTopCollidersButton = new System.Windows.Forms.Button();
74 this.button5 = new System.Windows.Forms.Button();
2 zed 75 this.TopCollidersGridView = new System.Windows.Forms.DataGridView();
76 this.TopCollidersScore = new System.Windows.Forms.DataGridViewTextBoxColumn();
77 this.TopCollidersTaskName = new System.Windows.Forms.DataGridViewTextBoxColumn();
78 this.TopCollidersUUID = new System.Windows.Forms.DataGridViewTextBoxColumn();
79 this.TopCollidersOwner = new System.Windows.Forms.DataGridViewTextBoxColumn();
80 this.TopCollidersPosition = new System.Windows.Forms.DataGridViewTextBoxColumn();
3 eva 81 this.BatchRestartTab = new System.Windows.Forms.TabPage();
82 this.BatchRestartButton = new System.Windows.Forms.Button();
83 this.BatchRestartGridView = new System.Windows.Forms.DataGridView();
84 this.BatchRestartRegionName = new System.Windows.Forms.DataGridViewTextBoxColumn();
85 this.BatchRestartPosition = new System.Windows.Forms.DataGridViewTextBoxColumn();
2 zed 86 this.statusStrip1 = new System.Windows.Forms.StatusStrip();
87 this.StatusProgress = new System.Windows.Forms.ToolStripProgressBar();
88 this.StatusText = new System.Windows.Forms.ToolStripStatusLabel();
89 this.button1 = new System.Windows.Forms.Button();
90 this.button2 = new System.Windows.Forms.Button();
91 this.RegionTeleportGroup = new System.Windows.Forms.GroupBox();
92 this.LoadedRegions = new System.Windows.Forms.ComboBox();
93 this.CurrentRegionName = new System.Windows.Forms.Label();
94 this.CurrentRegionAt = new System.Windows.Forms.Label();
3 eva 95 this.ExportCSVDialog = new System.Windows.Forms.SaveFileDialog();
96 this.groupBox1 = new System.Windows.Forms.GroupBox();
97 this.Version = new System.Windows.Forms.Label();
4 vero 98 this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
99 this.pictureBox6 = new System.Windows.Forms.PictureBox();
100 this.pictureBox2 = new System.Windows.Forms.PictureBox();
2 zed 101 ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
102 this.Tabs.SuspendLayout();
103 this.OverviewTab.SuspendLayout();
104 this.groupBox10.SuspendLayout();
105 ((System.ComponentModel.ISupportInitialize)(this.RegionAvatarsMap)).BeginInit();
106 this.groupBox9.SuspendLayout();
107 this.groupBox8.SuspendLayout();
108 this.groupBox7.SuspendLayout();
109 this.groupBox6.SuspendLayout();
110 this.groupBox5.SuspendLayout();
111 this.groupBox4.SuspendLayout();
112 this.groupBox3.SuspendLayout();
113 this.groupBox2.SuspendLayout();
114 this.TopScriptsTab.SuspendLayout();
115 ((System.ComponentModel.ISupportInitialize)(this.TopScriptsGridView)).BeginInit();
116 this.TopCollidersTab.SuspendLayout();
117 ((System.ComponentModel.ISupportInitialize)(this.TopCollidersGridView)).BeginInit();
3 eva 118 this.BatchRestartTab.SuspendLayout();
119 ((System.ComponentModel.ISupportInitialize)(this.BatchRestartGridView)).BeginInit();
2 zed 120 this.statusStrip1.SuspendLayout();
3 eva 121 this.RegionTeleportGroup.SuspendLayout();
2 zed 122 this.groupBox1.SuspendLayout();
4 vero 123 ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).BeginInit();
124 ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
2 zed 125 this.SuspendLayout();
126 //
127 // pictureBox1
128 //
129 this.pictureBox1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox1.BackgroundImage")));
130 this.pictureBox1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
3 eva 131 this.pictureBox1.Location = new System.Drawing.Point(17, 12);
2 zed 132 this.pictureBox1.Name = "pictureBox1";
3 eva 133 this.pictureBox1.Size = new System.Drawing.Size(477, 140);
2 zed 134 this.pictureBox1.TabIndex = 0;
135 this.pictureBox1.TabStop = false;
136 //
137 // Tabs
138 //
139 this.Tabs.Controls.Add(this.OverviewTab);
140 this.Tabs.Controls.Add(this.TopScriptsTab);
141 this.Tabs.Controls.Add(this.TopCollidersTab);
3 eva 142 this.Tabs.Controls.Add(this.BatchRestartTab);
143 this.Tabs.Location = new System.Drawing.Point(13, 186);
2 zed 144 this.Tabs.Name = "Tabs";
145 this.Tabs.SelectedIndex = 0;
3 eva 146 this.Tabs.Size = new System.Drawing.Size(679, 430);
2 zed 147 this.Tabs.TabIndex = 1;
148 this.Tabs.Selecting += new System.Windows.Forms.TabControlCancelEventHandler(this.RequestSelecting);
149 //
150 // OverviewTab
151 //
152 this.OverviewTab.Controls.Add(this.groupBox10);
153 this.OverviewTab.Controls.Add(this.groupBox9);
154 this.OverviewTab.Controls.Add(this.groupBox8);
155 this.OverviewTab.Controls.Add(this.groupBox7);
156 this.OverviewTab.Controls.Add(this.groupBox6);
157 this.OverviewTab.Controls.Add(this.groupBox5);
158 this.OverviewTab.Controls.Add(this.groupBox4);
159 this.OverviewTab.Controls.Add(this.groupBox3);
160 this.OverviewTab.Controls.Add(this.groupBox2);
161 this.OverviewTab.Location = new System.Drawing.Point(4, 22);
162 this.OverviewTab.Name = "OverviewTab";
163 this.OverviewTab.Padding = new System.Windows.Forms.Padding(3);
3 eva 164 this.OverviewTab.Size = new System.Drawing.Size(671, 404);
2 zed 165 this.OverviewTab.TabIndex = 0;
166 this.OverviewTab.Text = "Overview";
167 this.OverviewTab.UseVisualStyleBackColor = true;
168 //
169 // groupBox10
170 //
171 this.groupBox10.Controls.Add(this.RegionAvatarsMap);
172 this.groupBox10.Location = new System.Drawing.Point(6, 6);
173 this.groupBox10.Name = "groupBox10";
3 eva 174 this.groupBox10.Size = new System.Drawing.Size(390, 390);
2 zed 175 this.groupBox10.TabIndex = 9;
176 this.groupBox10.TabStop = false;
177 this.groupBox10.Text = "Map and Avatars";
178 //
179 // RegionAvatarsMap
180 //
3 eva 181 this.RegionAvatarsMap.BackColor = System.Drawing.Color.Black;
2 zed 182 this.RegionAvatarsMap.Location = new System.Drawing.Point(12, 14);
183 this.RegionAvatarsMap.Name = "RegionAvatarsMap";
3 eva 184 this.RegionAvatarsMap.Size = new System.Drawing.Size(372, 372);
2 zed 185 this.RegionAvatarsMap.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
186 this.RegionAvatarsMap.TabIndex = 0;
187 this.RegionAvatarsMap.TabStop = false;
188 //
189 // groupBox9
190 //
191 this.groupBox9.Controls.Add(this.Objects);
192 this.groupBox9.Font = new System.Drawing.Font("Palatino Linotype", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
4 vero 193 this.groupBox9.Location = new System.Drawing.Point(531, 96);
2 zed 194 this.groupBox9.Name = "groupBox9";
195 this.groupBox9.Size = new System.Drawing.Size(107, 49);
196 this.groupBox9.TabIndex = 8;
197 this.groupBox9.TabStop = false;
198 this.groupBox9.Text = "Objects";
199 //
200 // Objects
201 //
202 this.Objects.AutoSize = true;
4 vero 203 this.Objects.Font = new System.Drawing.Font("Consolas", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
204 this.Objects.Location = new System.Drawing.Point(9, 21);
2 zed 205 this.Objects.Name = "Objects";
4 vero 206 this.Objects.Size = new System.Drawing.Size(32, 18);
2 zed 207 this.Objects.TabIndex = 0;
208 this.Objects.Text = " ";
209 //
210 // groupBox8
211 //
212 this.groupBox8.Controls.Add(this.ScriptTime);
213 this.groupBox8.Font = new System.Drawing.Font("Palatino Linotype", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
4 vero 214 this.groupBox8.Location = new System.Drawing.Point(531, 206);
2 zed 215 this.groupBox8.Name = "groupBox8";
216 this.groupBox8.Size = new System.Drawing.Size(107, 49);
217 this.groupBox8.TabIndex = 7;
218 this.groupBox8.TabStop = false;
219 this.groupBox8.Text = "Script Time";
220 //
221 // ScriptTime
222 //
223 this.ScriptTime.AutoSize = true;
4 vero 224 this.ScriptTime.Font = new System.Drawing.Font("Consolas", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
225 this.ScriptTime.Location = new System.Drawing.Point(12, 21);
2 zed 226 this.ScriptTime.Name = "ScriptTime";
4 vero 227 this.ScriptTime.Size = new System.Drawing.Size(32, 18);
2 zed 228 this.ScriptTime.TabIndex = 0;
229 this.ScriptTime.Text = " ";
230 //
231 // groupBox7
232 //
233 this.groupBox7.Controls.Add(this.ActiveScripts);
234 this.groupBox7.Font = new System.Drawing.Font("Palatino Linotype", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
4 vero 235 this.groupBox7.Location = new System.Drawing.Point(418, 206);
2 zed 236 this.groupBox7.Name = "groupBox7";
237 this.groupBox7.Size = new System.Drawing.Size(107, 49);
238 this.groupBox7.TabIndex = 6;
239 this.groupBox7.TabStop = false;
240 this.groupBox7.Text = "Active Scripts";
241 //
242 // ActiveScripts
243 //
244 this.ActiveScripts.AutoSize = true;
4 vero 245 this.ActiveScripts.Font = new System.Drawing.Font("Consolas", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
246 this.ActiveScripts.Location = new System.Drawing.Point(9, 21);
2 zed 247 this.ActiveScripts.Name = "ActiveScripts";
4 vero 248 this.ActiveScripts.Size = new System.Drawing.Size(32, 18);
2 zed 249 this.ActiveScripts.TabIndex = 0;
250 this.ActiveScripts.Text = " ";
251 //
252 // groupBox6
253 //
254 this.groupBox6.Controls.Add(this.PhysicsFPS);
255 this.groupBox6.Font = new System.Drawing.Font("Palatino Linotype", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
3 eva 256 this.groupBox6.Location = new System.Drawing.Point(531, 151);
2 zed 257 this.groupBox6.Name = "groupBox6";
258 this.groupBox6.Size = new System.Drawing.Size(107, 49);
259 this.groupBox6.TabIndex = 5;
260 this.groupBox6.TabStop = false;
261 this.groupBox6.Text = "Physics FPS";
262 //
263 // PhysicsFPS
264 //
265 this.PhysicsFPS.AutoSize = true;
4 vero 266 this.PhysicsFPS.Font = new System.Drawing.Font("Consolas", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
267 this.PhysicsFPS.Location = new System.Drawing.Point(9, 21);
2 zed 268 this.PhysicsFPS.Name = "PhysicsFPS";
4 vero 269 this.PhysicsFPS.Size = new System.Drawing.Size(32, 18);
2 zed 270 this.PhysicsFPS.TabIndex = 0;
271 this.PhysicsFPS.Text = " ";
272 //
273 // groupBox5
274 //
275 this.groupBox5.Controls.Add(this.FPS);
276 this.groupBox5.Font = new System.Drawing.Font("Palatino Linotype", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
3 eva 277 this.groupBox5.Location = new System.Drawing.Point(418, 151);
2 zed 278 this.groupBox5.Name = "groupBox5";
279 this.groupBox5.Size = new System.Drawing.Size(107, 49);
280 this.groupBox5.TabIndex = 4;
281 this.groupBox5.TabStop = false;
282 this.groupBox5.Text = "FPS";
283 //
284 // FPS
285 //
286 this.FPS.AutoSize = true;
4 vero 287 this.FPS.Font = new System.Drawing.Font("Consolas", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
288 this.FPS.Location = new System.Drawing.Point(12, 21);
2 zed 289 this.FPS.Name = "FPS";
4 vero 290 this.FPS.Size = new System.Drawing.Size(32, 18);
2 zed 291 this.FPS.TabIndex = 0;
292 this.FPS.Text = " ";
293 //
294 // groupBox4
295 //
296 this.groupBox4.Controls.Add(this.Dilation);
297 this.groupBox4.Font = new System.Drawing.Font("Palatino Linotype", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
4 vero 298 this.groupBox4.Location = new System.Drawing.Point(531, 261);
2 zed 299 this.groupBox4.Name = "groupBox4";
300 this.groupBox4.Size = new System.Drawing.Size(107, 49);
301 this.groupBox4.TabIndex = 3;
302 this.groupBox4.TabStop = false;
303 this.groupBox4.Text = "Time Dilation";
304 //
305 // Dilation
306 //
307 this.Dilation.AutoSize = true;
4 vero 308 this.Dilation.Font = new System.Drawing.Font("Consolas", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
309 this.Dilation.Location = new System.Drawing.Point(9, 21);
2 zed 310 this.Dilation.Name = "Dilation";
4 vero 311 this.Dilation.Size = new System.Drawing.Size(32, 18);
2 zed 312 this.Dilation.TabIndex = 0;
313 this.Dilation.Text = " ";
314 //
315 // groupBox3
316 //
317 this.groupBox3.Controls.Add(this.LastLag);
318 this.groupBox3.Font = new System.Drawing.Font("Palatino Linotype", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
3 eva 319 this.groupBox3.Location = new System.Drawing.Point(418, 261);
2 zed 320 this.groupBox3.Name = "groupBox3";
321 this.groupBox3.Size = new System.Drawing.Size(107, 49);
322 this.groupBox3.TabIndex = 2;
323 this.groupBox3.TabStop = false;
324 this.groupBox3.Text = "LastLag";
325 //
326 // LastLag
327 //
328 this.LastLag.AutoSize = true;
4 vero 329 this.LastLag.Font = new System.Drawing.Font("Consolas", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
330 this.LastLag.Location = new System.Drawing.Point(12, 21);
2 zed 331 this.LastLag.Name = "LastLag";
4 vero 332 this.LastLag.Size = new System.Drawing.Size(32, 18);
2 zed 333 this.LastLag.TabIndex = 0;
334 this.LastLag.Text = " ";
335 //
336 // groupBox2
337 //
338 this.groupBox2.Controls.Add(this.Agents);
339 this.groupBox2.Font = new System.Drawing.Font("Palatino Linotype", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
3 eva 340 this.groupBox2.Location = new System.Drawing.Point(418, 96);
2 zed 341 this.groupBox2.Name = "groupBox2";
342 this.groupBox2.Size = new System.Drawing.Size(107, 49);
343 this.groupBox2.TabIndex = 1;
344 this.groupBox2.TabStop = false;
345 this.groupBox2.Text = "Agents";
346 //
347 // Agents
348 //
349 this.Agents.AutoSize = true;
4 vero 350 this.Agents.Font = new System.Drawing.Font("Consolas", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
351 this.Agents.Location = new System.Drawing.Point(12, 21);
2 zed 352 this.Agents.Name = "Agents";
4 vero 353 this.Agents.Size = new System.Drawing.Size(32, 18);
2 zed 354 this.Agents.TabIndex = 0;
355 this.Agents.Text = " ";
356 //
357 // TopScriptsTab
358 //
3 eva 359 this.TopScriptsTab.Controls.Add(this.label1);
360 this.TopScriptsTab.Controls.Add(this.TopScriptsFilter);
361 this.TopScriptsTab.Controls.Add(this.ReturnTopScriptsButton);
362 this.TopScriptsTab.Controls.Add(this.button3);
2 zed 363 this.TopScriptsTab.Controls.Add(this.TopScriptsGridView);
364 this.TopScriptsTab.Location = new System.Drawing.Point(4, 22);
365 this.TopScriptsTab.Name = "TopScriptsTab";
3 eva 366 this.TopScriptsTab.Size = new System.Drawing.Size(671, 404);
2 zed 367 this.TopScriptsTab.TabIndex = 1;
368 this.TopScriptsTab.Text = "Top Scripts";
369 this.TopScriptsTab.UseVisualStyleBackColor = true;
370 //
3 eva 371 // label1
372 //
373 this.label1.AutoSize = true;
374 this.label1.Location = new System.Drawing.Point(5, 380);
375 this.label1.Name = "label1";
376 this.label1.Size = new System.Drawing.Size(32, 13);
377 this.label1.TabIndex = 7;
378 this.label1.Text = "Filter:";
379 //
380 // TopScriptsFilter
381 //
382 this.TopScriptsFilter.Location = new System.Drawing.Point(43, 377);
383 this.TopScriptsFilter.Name = "TopScriptsFilter";
384 this.TopScriptsFilter.Size = new System.Drawing.Size(196, 20);
385 this.TopScriptsFilter.TabIndex = 6;
386 this.TopScriptsFilter.TextChanged += new System.EventHandler(this.RequestFilterTopScripts);
387 //
388 // ReturnTopScriptsButton
389 //
390 this.ReturnTopScriptsButton.Location = new System.Drawing.Point(500, 374);
391 this.ReturnTopScriptsButton.Name = "ReturnTopScriptsButton";
392 this.ReturnTopScriptsButton.Size = new System.Drawing.Size(86, 23);
393 this.ReturnTopScriptsButton.TabIndex = 2;
394 this.ReturnTopScriptsButton.Text = "Return Objects";
395 this.ReturnTopScriptsButton.UseVisualStyleBackColor = true;
396 this.ReturnTopScriptsButton.Click += new System.EventHandler(this.RequestReturnTopScriptsObjects);
397 //
398 // button3
399 //
400 this.button3.Location = new System.Drawing.Point(592, 374);
401 this.button3.Name = "button3";
402 this.button3.Size = new System.Drawing.Size(75, 23);
403 this.button3.TabIndex = 1;
404 this.button3.Text = "Export...";
405 this.button3.UseVisualStyleBackColor = true;
406 this.button3.Click += new System.EventHandler(this.RequestExportTopScripts);
407 //
2 zed 408 // TopScriptsGridView
409 //
410 this.TopScriptsGridView.AllowUserToAddRows = false;
411 this.TopScriptsGridView.AllowUserToDeleteRows = false;
412 this.TopScriptsGridView.AllowUserToOrderColumns = true;
413 this.TopScriptsGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
414 this.TopScriptsGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
415 this.TopScriptsScore,
416 this.TopScriptsTaskName,
417 this.TopScriptsUUID,
418 this.TopScriptsOwner,
419 this.TopScriptsPosition});
420 this.TopScriptsGridView.Location = new System.Drawing.Point(4, 4);
421 this.TopScriptsGridView.Name = "TopScriptsGridView";
422 this.TopScriptsGridView.ReadOnly = true;
3 eva 423 this.TopScriptsGridView.Size = new System.Drawing.Size(663, 364);
2 zed 424 this.TopScriptsGridView.TabIndex = 0;
425 //
426 // TopScriptsScore
427 //
428 this.TopScriptsScore.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
429 this.TopScriptsScore.HeaderText = "Score";
430 this.TopScriptsScore.Name = "TopScriptsScore";
431 this.TopScriptsScore.ReadOnly = true;
432 //
433 // TopScriptsTaskName
434 //
435 this.TopScriptsTaskName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
436 this.TopScriptsTaskName.HeaderText = "Task Name";
437 this.TopScriptsTaskName.Name = "TopScriptsTaskName";
438 this.TopScriptsTaskName.ReadOnly = true;
439 //
440 // TopScriptsUUID
441 //
442 this.TopScriptsUUID.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
443 this.TopScriptsUUID.HeaderText = "UUID";
444 this.TopScriptsUUID.Name = "TopScriptsUUID";
445 this.TopScriptsUUID.ReadOnly = true;
446 //
447 // TopScriptsOwner
448 //
449 this.TopScriptsOwner.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
450 this.TopScriptsOwner.HeaderText = "Owner";
451 this.TopScriptsOwner.Name = "TopScriptsOwner";
452 this.TopScriptsOwner.ReadOnly = true;
453 //
454 // TopScriptsPosition
455 //
456 this.TopScriptsPosition.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
457 this.TopScriptsPosition.HeaderText = "Position";
458 this.TopScriptsPosition.Name = "TopScriptsPosition";
459 this.TopScriptsPosition.ReadOnly = true;
460 //
461 // TopCollidersTab
462 //
3 eva 463 this.TopCollidersTab.Controls.Add(this.label2);
464 this.TopCollidersTab.Controls.Add(this.TopCollidersFilter);
465 this.TopCollidersTab.Controls.Add(this.ReturnTopCollidersButton);
466 this.TopCollidersTab.Controls.Add(this.button5);
2 zed 467 this.TopCollidersTab.Controls.Add(this.TopCollidersGridView);
468 this.TopCollidersTab.Location = new System.Drawing.Point(4, 22);
469 this.TopCollidersTab.Name = "TopCollidersTab";
3 eva 470 this.TopCollidersTab.Size = new System.Drawing.Size(671, 404);
2 zed 471 this.TopCollidersTab.TabIndex = 2;
472 this.TopCollidersTab.Text = "Top Colliders";
473 this.TopCollidersTab.UseVisualStyleBackColor = true;
474 //
3 eva 475 // label2
476 //
477 this.label2.AutoSize = true;
478 this.label2.Location = new System.Drawing.Point(5, 380);
479 this.label2.Name = "label2";
480 this.label2.Size = new System.Drawing.Size(32, 13);
481 this.label2.TabIndex = 9;
482 this.label2.Text = "Filter:";
483 //
484 // TopCollidersFilter
485 //
486 this.TopCollidersFilter.Location = new System.Drawing.Point(43, 377);
487 this.TopCollidersFilter.Name = "TopCollidersFilter";
488 this.TopCollidersFilter.Size = new System.Drawing.Size(196, 20);
489 this.TopCollidersFilter.TabIndex = 8;
490 this.TopCollidersFilter.TextChanged += new System.EventHandler(this.RequestFilterTopColliders);
491 //
492 // ReturnTopCollidersButton
493 //
494 this.ReturnTopCollidersButton.Location = new System.Drawing.Point(500, 374);
495 this.ReturnTopCollidersButton.Name = "ReturnTopCollidersButton";
496 this.ReturnTopCollidersButton.Size = new System.Drawing.Size(86, 23);
497 this.ReturnTopCollidersButton.TabIndex = 3;
498 this.ReturnTopCollidersButton.Text = "Return Objects";
499 this.ReturnTopCollidersButton.UseVisualStyleBackColor = true;
500 this.ReturnTopCollidersButton.Click += new System.EventHandler(this.RequestReturnTopCollidersObjects);
501 //
502 // button5
503 //
504 this.button5.Location = new System.Drawing.Point(592, 374);
505 this.button5.Name = "button5";
506 this.button5.Size = new System.Drawing.Size(75, 23);
507 this.button5.TabIndex = 2;
508 this.button5.Text = "Export...";
509 this.button5.UseVisualStyleBackColor = true;
510 this.button5.Click += new System.EventHandler(this.RequestExportTopColliders);
511 //
2 zed 512 // TopCollidersGridView
513 //
514 this.TopCollidersGridView.AllowUserToAddRows = false;
515 this.TopCollidersGridView.AllowUserToDeleteRows = false;
516 this.TopCollidersGridView.AllowUserToOrderColumns = true;
517 this.TopCollidersGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
518 this.TopCollidersGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
519 this.TopCollidersScore,
520 this.TopCollidersTaskName,
521 this.TopCollidersUUID,
522 this.TopCollidersOwner,
523 this.TopCollidersPosition});
524 this.TopCollidersGridView.Location = new System.Drawing.Point(4, 4);
525 this.TopCollidersGridView.Name = "TopCollidersGridView";
3 eva 526 this.TopCollidersGridView.Size = new System.Drawing.Size(663, 364);
2 zed 527 this.TopCollidersGridView.TabIndex = 0;
528 //
529 // TopCollidersScore
530 //
531 this.TopCollidersScore.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
532 this.TopCollidersScore.HeaderText = "Score";
533 this.TopCollidersScore.Name = "TopCollidersScore";
534 //
535 // TopCollidersTaskName
536 //
537 this.TopCollidersTaskName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
538 this.TopCollidersTaskName.HeaderText = "Task Name";
539 this.TopCollidersTaskName.Name = "TopCollidersTaskName";
540 //
541 // TopCollidersUUID
542 //
543 this.TopCollidersUUID.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
544 this.TopCollidersUUID.HeaderText = "UUID";
545 this.TopCollidersUUID.Name = "TopCollidersUUID";
546 //
547 // TopCollidersOwner
548 //
549 this.TopCollidersOwner.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
550 this.TopCollidersOwner.HeaderText = "Owner";
551 this.TopCollidersOwner.Name = "TopCollidersOwner";
552 //
553 // TopCollidersPosition
554 //
555 this.TopCollidersPosition.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
556 this.TopCollidersPosition.HeaderText = "Position";
557 this.TopCollidersPosition.Name = "TopCollidersPosition";
558 //
3 eva 559 // BatchRestartTab
560 //
561 this.BatchRestartTab.Controls.Add(this.BatchRestartButton);
562 this.BatchRestartTab.Controls.Add(this.BatchRestartGridView);
563 this.BatchRestartTab.Location = new System.Drawing.Point(4, 22);
564 this.BatchRestartTab.Name = "BatchRestartTab";
565 this.BatchRestartTab.Size = new System.Drawing.Size(671, 404);
566 this.BatchRestartTab.TabIndex = 3;
567 this.BatchRestartTab.Text = "Batch Restart";
568 this.BatchRestartTab.UseVisualStyleBackColor = true;
569 //
570 // BatchRestartButton
571 //
572 this.BatchRestartButton.Location = new System.Drawing.Point(285, 374);
573 this.BatchRestartButton.Name = "BatchRestartButton";
574 this.BatchRestartButton.Size = new System.Drawing.Size(95, 23);
575 this.BatchRestartButton.TabIndex = 1;
576 this.BatchRestartButton.Text = "Batch Restart";
577 this.BatchRestartButton.UseVisualStyleBackColor = true;
578 this.BatchRestartButton.Click += new System.EventHandler(this.RequestBatchRestart);
579 //
580 // BatchRestartGridView
581 //
582 this.BatchRestartGridView.AllowUserToAddRows = false;
583 this.BatchRestartGridView.AllowUserToDeleteRows = false;
584 this.BatchRestartGridView.AllowUserToOrderColumns = true;
585 this.BatchRestartGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
586 this.BatchRestartGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
587 this.BatchRestartRegionName,
588 this.BatchRestartPosition});
589 this.BatchRestartGridView.Location = new System.Drawing.Point(4, 4);
590 this.BatchRestartGridView.Name = "BatchRestartGridView";
591 this.BatchRestartGridView.ReadOnly = true;
592 this.BatchRestartGridView.Size = new System.Drawing.Size(663, 364);
593 this.BatchRestartGridView.TabIndex = 0;
594 //
595 // BatchRestartRegionName
596 //
597 this.BatchRestartRegionName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
598 this.BatchRestartRegionName.HeaderText = "Region Name";
599 this.BatchRestartRegionName.Name = "BatchRestartRegionName";
600 this.BatchRestartRegionName.ReadOnly = true;
601 this.BatchRestartRegionName.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Programmatic;
602 //
603 // BatchRestartPosition
604 //
605 this.BatchRestartPosition.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
606 this.BatchRestartPosition.HeaderText = "Position";
607 this.BatchRestartPosition.Name = "BatchRestartPosition";
608 this.BatchRestartPosition.ReadOnly = true;
609 this.BatchRestartPosition.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Programmatic;
610 //
2 zed 611 // statusStrip1
612 //
613 this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
614 this.StatusProgress,
615 this.StatusText});
616 this.statusStrip1.Location = new System.Drawing.Point(0, 619);
617 this.statusStrip1.Name = "statusStrip1";
618 this.statusStrip1.Size = new System.Drawing.Size(704, 22);
619 this.statusStrip1.TabIndex = 2;
620 this.statusStrip1.Text = "statusStrip1";
621 //
622 // StatusProgress
623 //
624 this.StatusProgress.Name = "StatusProgress";
625 this.StatusProgress.Size = new System.Drawing.Size(100, 16);
626 //
627 // StatusText
628 //
629 this.StatusText.Name = "StatusText";
630 this.StatusText.Size = new System.Drawing.Size(10, 17);
631 this.StatusText.Text = " ";
632 //
633 // button1
634 //
3 eva 635 this.button1.Location = new System.Drawing.Point(6, 23);
2 zed 636 this.button1.Name = "button1";
3 eva 637 this.button1.Size = new System.Drawing.Size(66, 23);
2 zed 638 this.button1.TabIndex = 8;
3 eva 639 this.button1.Text = "Settings...";
2 zed 640 this.button1.UseVisualStyleBackColor = true;
641 this.button1.Click += new System.EventHandler(this.SettingsRequested);
642 //
643 // button2
644 //
3 eva 645 this.button2.Location = new System.Drawing.Point(6, 49);
2 zed 646 this.button2.Name = "button2";
647 this.button2.Size = new System.Drawing.Size(56, 23);
648 this.button2.TabIndex = 7;
649 this.button2.Text = "Edit...";
650 this.button2.UseVisualStyleBackColor = true;
651 this.button2.Click += new System.EventHandler(this.RequestedEditRegions);
652 //
653 // RegionTeleportGroup
654 //
4 vero 655 this.RegionTeleportGroup.Controls.Add(this.pictureBox6);
2 zed 656 this.RegionTeleportGroup.Controls.Add(this.button2);
657 this.RegionTeleportGroup.Controls.Add(this.LoadedRegions);
658 this.RegionTeleportGroup.Font = new System.Drawing.Font("Palatino Linotype", 8.25F);
3 eva 659 this.RegionTeleportGroup.Location = new System.Drawing.Point(502, 73);
2 zed 660 this.RegionTeleportGroup.Name = "RegionTeleportGroup";
3 eva 661 this.RegionTeleportGroup.Size = new System.Drawing.Size(190, 79);
2 zed 662 this.RegionTeleportGroup.TabIndex = 4;
663 this.RegionTeleportGroup.TabStop = false;
664 this.RegionTeleportGroup.Text = "Region Teleport";
665 //
666 // LoadedRegions
667 //
668 this.LoadedRegions.DisplayMember = "Text";
669 this.LoadedRegions.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
670 this.LoadedRegions.Font = new System.Drawing.Font("Consolas", 8.25F);
671 this.LoadedRegions.FormattingEnabled = true;
672 this.LoadedRegions.Location = new System.Drawing.Point(6, 21);
673 this.LoadedRegions.Name = "LoadedRegions";
3 eva 674 this.LoadedRegions.Size = new System.Drawing.Size(180, 21);
2 zed 675 this.LoadedRegions.Sorted = true;
676 this.LoadedRegions.TabIndex = 0;
677 this.LoadedRegions.SelectedIndexChanged += new System.EventHandler(this.RegionSelected);
678 //
679 // CurrentRegionName
680 //
681 this.CurrentRegionName.AutoSize = true;
682 this.CurrentRegionName.Font = new System.Drawing.Font("Palatino Linotype", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
3 eva 683 this.CurrentRegionName.Location = new System.Drawing.Point(223, 155);
2 zed 684 this.CurrentRegionName.Name = "CurrentRegionName";
685 this.CurrentRegionName.Size = new System.Drawing.Size(154, 28);
686 this.CurrentRegionName.TabIndex = 7;
687 this.CurrentRegionName.Text = "Puguet Sound";
688 this.CurrentRegionName.Visible = false;
689 //
690 // CurrentRegionAt
691 //
692 this.CurrentRegionAt.AutoSize = true;
3 eva 693 this.CurrentRegionAt.Location = new System.Drawing.Point(201, 155);
2 zed 694 this.CurrentRegionAt.Name = "CurrentRegionAt";
695 this.CurrentRegionAt.Size = new System.Drawing.Size(16, 13);
696 this.CurrentRegionAt.TabIndex = 8;
697 this.CurrentRegionAt.Text = "at";
698 this.CurrentRegionAt.Visible = false;
699 //
3 eva 700 // ExportCSVDialog
701 //
702 this.ExportCSVDialog.Filter = "CSV (*.csv)|*.csv|All files (*.*)|*.*";
703 //
704 // groupBox1
705 //
4 vero 706 this.groupBox1.Controls.Add(this.pictureBox2);
3 eva 707 this.groupBox1.Controls.Add(this.button1);
708 this.groupBox1.Font = new System.Drawing.Font("Palatino Linotype", 8.25F);
709 this.groupBox1.Location = new System.Drawing.Point(500, 12);
710 this.groupBox1.Name = "groupBox1";
711 this.groupBox1.Size = new System.Drawing.Size(192, 55);
712 this.groupBox1.TabIndex = 3;
713 this.groupBox1.TabStop = false;
714 this.groupBox1.Text = "Settings";
715 //
716 // Version
717 //
718 this.Version.AutoSize = true;
719 this.Version.Font = new System.Drawing.Font("Consolas", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
720 this.Version.Location = new System.Drawing.Point(262, 132);
721 this.Version.Name = "Version";
722 this.Version.Size = new System.Drawing.Size(97, 13);
723 this.Version.TabIndex = 9;
724 this.Version.Text = " ";
725 //
4 vero 726 // toolTip1
727 //
728 this.toolTip1.AutoPopDelay = 32767;
729 this.toolTip1.InitialDelay = 500;
730 this.toolTip1.ReshowDelay = 100;
731 //
732 // pictureBox6
733 //
734 this.pictureBox6.Cursor = System.Windows.Forms.Cursors.Help;
735 this.pictureBox6.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox6.Image")));
736 this.pictureBox6.Location = new System.Drawing.Point(68, 51);
737 this.pictureBox6.Name = "pictureBox6";
738 this.pictureBox6.Size = new System.Drawing.Size(20, 20);
739 this.pictureBox6.TabIndex = 10;
740 this.pictureBox6.TabStop = false;
741 this.toolTip1.SetToolTip(this.pictureBox6, resources.GetString("pictureBox6.ToolTip"));
742 //
743 // pictureBox2
744 //
745 this.pictureBox2.Cursor = System.Windows.Forms.Cursors.Help;
746 this.pictureBox2.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox2.Image")));
747 this.pictureBox2.Location = new System.Drawing.Point(78, 25);
748 this.pictureBox2.Name = "pictureBox2";
749 this.pictureBox2.Size = new System.Drawing.Size(20, 20);
750 this.pictureBox2.TabIndex = 11;
751 this.pictureBox2.TabStop = false;
752 this.toolTip1.SetToolTip(this.pictureBox2, "Before Vassal can work, Vassal must be\r\nconfigured by using the \"Settings...\"\r\nbu" +
753 "tton and configuring Vassal.");
754 //
2 zed 755 // Vassal
756 //
757 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
758 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
759 this.ClientSize = new System.Drawing.Size(704, 641);
3 eva 760 this.Controls.Add(this.Version);
2 zed 761 this.Controls.Add(this.CurrentRegionAt);
762 this.Controls.Add(this.CurrentRegionName);
763 this.Controls.Add(this.RegionTeleportGroup);
764 this.Controls.Add(this.groupBox1);
765 this.Controls.Add(this.statusStrip1);
766 this.Controls.Add(this.Tabs);
767 this.Controls.Add(this.pictureBox1);
3 eva 768 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
2 zed 769 this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
3 eva 770 this.MaximizeBox = false;
771 this.MaximumSize = new System.Drawing.Size(720, 680);
2 zed 772 this.Name = "Vassal";
773 this.Text = "Vassal";
774 this.Shown += new System.EventHandler(this.VassalShown);
775 ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
776 this.Tabs.ResumeLayout(false);
777 this.OverviewTab.ResumeLayout(false);
778 this.groupBox10.ResumeLayout(false);
779 ((System.ComponentModel.ISupportInitialize)(this.RegionAvatarsMap)).EndInit();
780 this.groupBox9.ResumeLayout(false);
781 this.groupBox9.PerformLayout();
782 this.groupBox8.ResumeLayout(false);
783 this.groupBox8.PerformLayout();
784 this.groupBox7.ResumeLayout(false);
785 this.groupBox7.PerformLayout();
786 this.groupBox6.ResumeLayout(false);
787 this.groupBox6.PerformLayout();
788 this.groupBox5.ResumeLayout(false);
789 this.groupBox5.PerformLayout();
790 this.groupBox4.ResumeLayout(false);
791 this.groupBox4.PerformLayout();
792 this.groupBox3.ResumeLayout(false);
793 this.groupBox3.PerformLayout();
794 this.groupBox2.ResumeLayout(false);
795 this.groupBox2.PerformLayout();
796 this.TopScriptsTab.ResumeLayout(false);
3 eva 797 this.TopScriptsTab.PerformLayout();
2 zed 798 ((System.ComponentModel.ISupportInitialize)(this.TopScriptsGridView)).EndInit();
799 this.TopCollidersTab.ResumeLayout(false);
3 eva 800 this.TopCollidersTab.PerformLayout();
2 zed 801 ((System.ComponentModel.ISupportInitialize)(this.TopCollidersGridView)).EndInit();
3 eva 802 this.BatchRestartTab.ResumeLayout(false);
803 ((System.ComponentModel.ISupportInitialize)(this.BatchRestartGridView)).EndInit();
2 zed 804 this.statusStrip1.ResumeLayout(false);
805 this.statusStrip1.PerformLayout();
3 eva 806 this.RegionTeleportGroup.ResumeLayout(false);
2 zed 807 this.groupBox1.ResumeLayout(false);
4 vero 808 ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).EndInit();
809 ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
2 zed 810 this.ResumeLayout(false);
811 this.PerformLayout();
812  
813 }
814  
815 #endregion
816  
817 private PictureBox pictureBox1;
818 private TabControl Tabs;
819 private TabPage OverviewTab;
820 private StatusStrip statusStrip1;
821 private ToolStripProgressBar StatusProgress;
822 private ToolStripStatusLabel StatusText;
823 private Button button2;
824 private GroupBox RegionTeleportGroup;
825 public ComboBox LoadedRegions;
826 private Label CurrentRegionName;
827 private Label CurrentRegionAt;
828 private PictureBox RegionAvatarsMap;
829 private Button button1;
830 private GroupBox groupBox2;
831 private Label Agents;
832 private GroupBox groupBox7;
833 private Label ActiveScripts;
834 private GroupBox groupBox6;
835 private Label PhysicsFPS;
836 private GroupBox groupBox5;
837 private Label FPS;
838 private GroupBox groupBox4;
839 private Label Dilation;
840 private GroupBox groupBox3;
841 private Label LastLag;
842 private GroupBox groupBox9;
843 private Label Objects;
844 private GroupBox groupBox8;
845 private Label ScriptTime;
846 private GroupBox groupBox10;
847 private TabPage TopScriptsTab;
848 private DataGridView TopScriptsGridView;
849 private TabPage TopCollidersTab;
850 private DataGridView TopCollidersGridView;
851 private DataGridViewTextBoxColumn TopScriptsScore;
852 private DataGridViewTextBoxColumn TopScriptsTaskName;
853 private DataGridViewTextBoxColumn TopScriptsUUID;
854 private DataGridViewTextBoxColumn TopScriptsOwner;
855 private DataGridViewTextBoxColumn TopScriptsPosition;
856 private DataGridViewTextBoxColumn TopCollidersScore;
857 private DataGridViewTextBoxColumn TopCollidersTaskName;
858 private DataGridViewTextBoxColumn TopCollidersUUID;
859 private DataGridViewTextBoxColumn TopCollidersOwner;
860 private DataGridViewTextBoxColumn TopCollidersPosition;
3 eva 861 private Button ReturnTopScriptsButton;
862 private Button button3;
863 private TabPage BatchRestartTab;
864 private SaveFileDialog ExportCSVDialog;
865 private Button button5;
866 private Button ReturnTopCollidersButton;
867 private Label label1;
868 private TextBox TopScriptsFilter;
869 private Label label2;
870 private TextBox TopCollidersFilter;
871 private Button BatchRestartButton;
872 public DataGridView BatchRestartGridView;
873 private DataGridViewTextBoxColumn BatchRestartRegionName;
874 private DataGridViewTextBoxColumn BatchRestartPosition;
875 private GroupBox groupBox1;
876 private Label Version;
4 vero 877 private ToolTip toolTip1;
878 private PictureBox pictureBox6;
879 private PictureBox pictureBox2;
2 zed 880 }
881 }
882