Form1.Designer.cs 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477
  1. namespace crusherScanner
  2. {
  3. /// <summary>
  4. /// Main window of the application.
  5. /// </summary>
  6. partial class Form1
  7. {
  8. /// <summary>
  9. /// Required designer variable.
  10. /// </summary>
  11. private System.ComponentModel.IContainer components = null;
  12. /// <summary>
  13. /// Clean up any resources being used.
  14. /// </summary>
  15. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  16. protected override void Dispose(bool disposing)
  17. {
  18. if (disposing && (components != null))
  19. {
  20. components.Dispose();
  21. }
  22. base.Dispose(disposing);
  23. }
  24. #region Windows Form Designer generated code
  25. /// <summary>
  26. /// Required method for Designer support - do not modify
  27. /// the contents of this method with the code editor.
  28. /// </summary>
  29. private void InitializeComponent()
  30. {
  31. this.components = new System.ComponentModel.Container();
  32. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
  33. this.TextBox1 = new System.Windows.Forms.TextBox();
  34. this.menuStrip1 = new System.Windows.Forms.MenuStrip();
  35. this.menuToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  36. this.settingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  37. this.editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  38. this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
  39. this.importToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  40. this.exportToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  41. this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
  42. this.purgeToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
  43. this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
  44. this.logsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  45. this.openCurrentToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  46. this.openDirectoryToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  47. this.purgeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  48. this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
  49. this.reinitializeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  50. this.reinitializeSettingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  51. this.testSettingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  52. this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
  53. this.ExitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  54. this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
  55. this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
  56. this.label1 = new System.Windows.Forms.Label();
  57. this.label2 = new System.Windows.Forms.Label();
  58. this.label3 = new System.Windows.Forms.Label();
  59. this.label4 = new System.Windows.Forms.Label();
  60. this.label5 = new System.Windows.Forms.Label();
  61. this.Timer1 = new System.Windows.Forms.Timer(this.components);
  62. this.label6 = new System.Windows.Forms.Label();
  63. this.label7 = new System.Windows.Forms.Label();
  64. this.statusStrip1 = new System.Windows.Forms.StatusStrip();
  65. this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
  66. this.toolStripStatusLabel2 = new System.Windows.Forms.ToolStripStatusLabel();
  67. this.toolStripStatusLabel3 = new System.Windows.Forms.ToolStripStatusLabel();
  68. this.toolStripStatusLabel4 = new System.Windows.Forms.ToolStripStatusLabel();
  69. this.toolStripStatusLabel5 = new System.Windows.Forms.ToolStripStatusLabel();
  70. this.toolStripStatusLabel7 = new System.Windows.Forms.ToolStripStatusLabel();
  71. this.toolStripProgressBar1 = new System.Windows.Forms.ToolStripProgressBar();
  72. this.label8 = new System.Windows.Forms.Label();
  73. this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
  74. this.menuStrip1.SuspendLayout();
  75. this.statusStrip1.SuspendLayout();
  76. this.SuspendLayout();
  77. //
  78. // TextBox1
  79. //
  80. this.TextBox1.Font = new System.Drawing.Font("Segoe UI", 34F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
  81. this.TextBox1.Location = new System.Drawing.Point(279, 214);
  82. this.TextBox1.Name = "TextBox1";
  83. this.TextBox1.PlaceholderText = "Scan Barcode here!";
  84. this.TextBox1.Size = new System.Drawing.Size(706, 98);
  85. this.TextBox1.TabIndex = 0;
  86. this.TextBox1.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.TextBox1_PreviewKeyDown);
  87. //
  88. // menuStrip1
  89. //
  90. this.menuStrip1.ImageScalingSize = new System.Drawing.Size(24, 24);
  91. this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  92. this.menuToolStripMenuItem});
  93. this.menuStrip1.Location = new System.Drawing.Point(0, 0);
  94. this.menuStrip1.Name = "menuStrip1";
  95. this.menuStrip1.Size = new System.Drawing.Size(1708, 33);
  96. this.menuStrip1.TabIndex = 1;
  97. this.menuStrip1.Text = "menuStrip1";
  98. //
  99. // menuToolStripMenuItem
  100. //
  101. this.menuToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  102. this.settingsToolStripMenuItem,
  103. this.toolStripSeparator2,
  104. this.logsToolStripMenuItem,
  105. this.toolStripSeparator3,
  106. this.reinitializeToolStripMenuItem,
  107. this.toolStripSeparator4,
  108. this.ExitToolStripMenuItem});
  109. this.menuToolStripMenuItem.Name = "menuToolStripMenuItem";
  110. this.menuToolStripMenuItem.Size = new System.Drawing.Size(73, 29);
  111. this.menuToolStripMenuItem.Text = "Menu";
  112. //
  113. // settingsToolStripMenuItem
  114. //
  115. this.settingsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  116. this.editToolStripMenuItem,
  117. this.toolStripSeparator1,
  118. this.importToolStripMenuItem,
  119. this.exportToolStripMenuItem,
  120. this.toolStripSeparator5,
  121. this.purgeToolStripMenuItem1});
  122. this.settingsToolStripMenuItem.Name = "settingsToolStripMenuItem";
  123. this.settingsToolStripMenuItem.Size = new System.Drawing.Size(195, 34);
  124. this.settingsToolStripMenuItem.Text = "Settings";
  125. //
  126. // editToolStripMenuItem
  127. //
  128. this.editToolStripMenuItem.Name = "editToolStripMenuItem";
  129. this.editToolStripMenuItem.Size = new System.Drawing.Size(169, 34);
  130. this.editToolStripMenuItem.Text = "Edit";
  131. this.editToolStripMenuItem.Click += new System.EventHandler(this.EditToolStripMenuItem_Click);
  132. //
  133. // toolStripSeparator1
  134. //
  135. this.toolStripSeparator1.Name = "toolStripSeparator1";
  136. this.toolStripSeparator1.Size = new System.Drawing.Size(166, 6);
  137. //
  138. // importToolStripMenuItem
  139. //
  140. this.importToolStripMenuItem.Name = "importToolStripMenuItem";
  141. this.importToolStripMenuItem.Size = new System.Drawing.Size(169, 34);
  142. this.importToolStripMenuItem.Text = "Import";
  143. this.importToolStripMenuItem.Click += new System.EventHandler(this.ImportToolStripMenuItem_Click);
  144. //
  145. // exportToolStripMenuItem
  146. //
  147. this.exportToolStripMenuItem.Name = "exportToolStripMenuItem";
  148. this.exportToolStripMenuItem.Size = new System.Drawing.Size(169, 34);
  149. this.exportToolStripMenuItem.Text = "Export";
  150. this.exportToolStripMenuItem.Click += new System.EventHandler(this.ExportToolStripMenuItem_Click);
  151. //
  152. // toolStripSeparator5
  153. //
  154. this.toolStripSeparator5.Name = "toolStripSeparator5";
  155. this.toolStripSeparator5.Size = new System.Drawing.Size(166, 6);
  156. //
  157. // purgeToolStripMenuItem1
  158. //
  159. this.purgeToolStripMenuItem1.Name = "purgeToolStripMenuItem1";
  160. this.purgeToolStripMenuItem1.Size = new System.Drawing.Size(169, 34);
  161. this.purgeToolStripMenuItem1.Text = "Purge";
  162. this.purgeToolStripMenuItem1.Click += new System.EventHandler(this.PurgeToolStripMenuItem1_Click);
  163. //
  164. // toolStripSeparator2
  165. //
  166. this.toolStripSeparator2.Name = "toolStripSeparator2";
  167. this.toolStripSeparator2.Size = new System.Drawing.Size(192, 6);
  168. //
  169. // logsToolStripMenuItem
  170. //
  171. this.logsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  172. this.openCurrentToolStripMenuItem,
  173. this.openDirectoryToolStripMenuItem,
  174. this.purgeToolStripMenuItem});
  175. this.logsToolStripMenuItem.Name = "logsToolStripMenuItem";
  176. this.logsToolStripMenuItem.Size = new System.Drawing.Size(195, 34);
  177. this.logsToolStripMenuItem.Text = "Logs";
  178. //
  179. // openCurrentToolStripMenuItem
  180. //
  181. this.openCurrentToolStripMenuItem.Name = "openCurrentToolStripMenuItem";
  182. this.openCurrentToolStripMenuItem.Size = new System.Drawing.Size(233, 34);
  183. this.openCurrentToolStripMenuItem.Text = "Open current";
  184. this.openCurrentToolStripMenuItem.Click += new System.EventHandler(this.openCurrentToolStripMenuItem_Click);
  185. //
  186. // openDirectoryToolStripMenuItem
  187. //
  188. this.openDirectoryToolStripMenuItem.Name = "openDirectoryToolStripMenuItem";
  189. this.openDirectoryToolStripMenuItem.Size = new System.Drawing.Size(233, 34);
  190. this.openDirectoryToolStripMenuItem.Text = "Open directory";
  191. this.openDirectoryToolStripMenuItem.Click += new System.EventHandler(this.openDirectoryToolStripMenuItem_Click);
  192. //
  193. // purgeToolStripMenuItem
  194. //
  195. this.purgeToolStripMenuItem.Name = "purgeToolStripMenuItem";
  196. this.purgeToolStripMenuItem.Size = new System.Drawing.Size(233, 34);
  197. this.purgeToolStripMenuItem.Text = "Purge";
  198. this.purgeToolStripMenuItem.Click += new System.EventHandler(this.purgeToolStripMenuItem_Click);
  199. //
  200. // toolStripSeparator3
  201. //
  202. this.toolStripSeparator3.Name = "toolStripSeparator3";
  203. this.toolStripSeparator3.Size = new System.Drawing.Size(192, 6);
  204. //
  205. // reinitializeToolStripMenuItem
  206. //
  207. this.reinitializeToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  208. this.reinitializeSettingsToolStripMenuItem,
  209. this.testSettingsToolStripMenuItem});
  210. this.reinitializeToolStripMenuItem.Name = "reinitializeToolStripMenuItem";
  211. this.reinitializeToolStripMenuItem.Size = new System.Drawing.Size(195, 34);
  212. this.reinitializeToolStripMenuItem.Text = "Reinitialize";
  213. //
  214. // reinitializeSettingsToolStripMenuItem
  215. //
  216. this.reinitializeSettingsToolStripMenuItem.Name = "reinitializeSettingsToolStripMenuItem";
  217. this.reinitializeSettingsToolStripMenuItem.Size = new System.Drawing.Size(262, 34);
  218. this.reinitializeSettingsToolStripMenuItem.Text = "Reinitialize settings";
  219. this.reinitializeSettingsToolStripMenuItem.Click += new System.EventHandler(this.ReinitializeSettingsToolStripMenuItem_Click);
  220. //
  221. // testSettingsToolStripMenuItem
  222. //
  223. this.testSettingsToolStripMenuItem.Name = "testSettingsToolStripMenuItem";
  224. this.testSettingsToolStripMenuItem.Size = new System.Drawing.Size(262, 34);
  225. this.testSettingsToolStripMenuItem.Text = "Test settings";
  226. //
  227. // toolStripSeparator4
  228. //
  229. this.toolStripSeparator4.Name = "toolStripSeparator4";
  230. this.toolStripSeparator4.Size = new System.Drawing.Size(192, 6);
  231. //
  232. // ExitToolStripMenuItem
  233. //
  234. this.ExitToolStripMenuItem.Name = "ExitToolStripMenuItem";
  235. this.ExitToolStripMenuItem.Size = new System.Drawing.Size(195, 34);
  236. this.ExitToolStripMenuItem.Text = "Exit";
  237. this.ExitToolStripMenuItem.Click += new System.EventHandler(this.ExitToolStripMenuItem_Click);
  238. //
  239. // openFileDialog1
  240. //
  241. this.openFileDialog1.FileName = "openFileDialog1";
  242. //
  243. // label1
  244. //
  245. this.label1.AutoSize = true;
  246. this.label1.BackColor = System.Drawing.Color.Lime;
  247. this.label1.Font = new System.Drawing.Font("Segoe UI", 34F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
  248. this.label1.Location = new System.Drawing.Point(279, 315);
  249. this.label1.Name = "label1";
  250. this.label1.Size = new System.Drawing.Size(219, 91);
  251. this.label1.TabIndex = 2;
  252. this.label1.Text = "label1";
  253. //
  254. // label2
  255. //
  256. this.label2.AutoSize = true;
  257. this.label2.BackColor = System.Drawing.Color.Fuchsia;
  258. this.label2.Font = new System.Drawing.Font("Segoe UI", 34F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
  259. this.label2.Location = new System.Drawing.Point(279, 406);
  260. this.label2.Name = "label2";
  261. this.label2.Size = new System.Drawing.Size(219, 91);
  262. this.label2.TabIndex = 3;
  263. this.label2.Text = "label2";
  264. //
  265. // label3
  266. //
  267. this.label3.AutoSize = true;
  268. this.label3.BackColor = System.Drawing.Color.Orange;
  269. this.label3.Font = new System.Drawing.Font("Segoe UI", 34F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
  270. this.label3.Location = new System.Drawing.Point(279, 497);
  271. this.label3.Name = "label3";
  272. this.label3.Size = new System.Drawing.Size(219, 91);
  273. this.label3.TabIndex = 4;
  274. this.label3.Text = "label3";
  275. //
  276. // label4
  277. //
  278. this.label4.AutoSize = true;
  279. this.label4.BackColor = System.Drawing.Color.Blue;
  280. this.label4.Font = new System.Drawing.Font("Segoe UI", 34F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
  281. this.label4.ForeColor = System.Drawing.Color.White;
  282. this.label4.Location = new System.Drawing.Point(279, 588);
  283. this.label4.Name = "label4";
  284. this.label4.Size = new System.Drawing.Size(219, 91);
  285. this.label4.TabIndex = 5;
  286. this.label4.Text = "label4";
  287. //
  288. // label5
  289. //
  290. this.label5.AutoSize = true;
  291. this.label5.BackColor = System.Drawing.Color.Maroon;
  292. this.label5.Font = new System.Drawing.Font("Segoe UI", 34F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
  293. this.label5.ForeColor = System.Drawing.Color.White;
  294. this.label5.Location = new System.Drawing.Point(279, 679);
  295. this.label5.Name = "label5";
  296. this.label5.Size = new System.Drawing.Size(219, 91);
  297. this.label5.TabIndex = 6;
  298. this.label5.Text = "label5";
  299. //
  300. // Timer1
  301. //
  302. this.Timer1.Enabled = true;
  303. this.Timer1.Interval = 1000;
  304. this.Timer1.Tick += new System.EventHandler(this.Timer1_Tick);
  305. //
  306. // label6
  307. //
  308. this.label6.AutoSize = true;
  309. this.label6.Font = new System.Drawing.Font("Segoe UI", 35F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
  310. this.label6.Location = new System.Drawing.Point(759, 102);
  311. this.label6.Name = "label6";
  312. this.label6.Size = new System.Drawing.Size(226, 93);
  313. this.label6.TabIndex = 7;
  314. this.label6.Text = "label6";
  315. //
  316. // label7
  317. //
  318. this.label7.AutoSize = true;
  319. this.label7.Font = new System.Drawing.Font("Segoe UI", 35F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
  320. this.label7.Location = new System.Drawing.Point(76, 102);
  321. this.label7.Name = "label7";
  322. this.label7.Size = new System.Drawing.Size(226, 93);
  323. this.label7.TabIndex = 8;
  324. this.label7.Text = "label7";
  325. //
  326. // statusStrip1
  327. //
  328. this.statusStrip1.ImageScalingSize = new System.Drawing.Size(24, 24);
  329. this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  330. this.toolStripStatusLabel1,
  331. this.toolStripStatusLabel2,
  332. this.toolStripStatusLabel3,
  333. this.toolStripStatusLabel4,
  334. this.toolStripStatusLabel5,
  335. this.toolStripStatusLabel7,
  336. this.toolStripProgressBar1});
  337. this.statusStrip1.Location = new System.Drawing.Point(0, 1018);
  338. this.statusStrip1.Name = "statusStrip1";
  339. this.statusStrip1.Size = new System.Drawing.Size(1708, 32);
  340. this.statusStrip1.TabIndex = 9;
  341. this.statusStrip1.Text = "statusStrip1";
  342. //
  343. // toolStripStatusLabel1
  344. //
  345. this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
  346. this.toolStripStatusLabel1.Size = new System.Drawing.Size(165, 25);
  347. this.toolStripStatusLabel1.Text = "Samples in buffer : ";
  348. //
  349. // toolStripStatusLabel2
  350. //
  351. this.toolStripStatusLabel2.Name = "toolStripStatusLabel2";
  352. this.toolStripStatusLabel2.Size = new System.Drawing.Size(179, 25);
  353. this.toolStripStatusLabel2.Text = "toolStripStatusLabel2";
  354. //
  355. // toolStripStatusLabel3
  356. //
  357. this.toolStripStatusLabel3.Name = "toolStripStatusLabel3";
  358. this.toolStripStatusLabel3.Size = new System.Drawing.Size(62, 25);
  359. this.toolStripStatusLabel3.Text = " ";
  360. //
  361. // toolStripStatusLabel4
  362. //
  363. this.toolStripStatusLabel4.Name = "toolStripStatusLabel4";
  364. this.toolStripStatusLabel4.Size = new System.Drawing.Size(181, 25);
  365. this.toolStripStatusLabel4.Text = "Samples Remaining : ";
  366. //
  367. // toolStripStatusLabel5
  368. //
  369. this.toolStripStatusLabel5.Name = "toolStripStatusLabel5";
  370. this.toolStripStatusLabel5.Size = new System.Drawing.Size(179, 25);
  371. this.toolStripStatusLabel5.Text = "toolStripStatusLabel5";
  372. //
  373. // toolStripStatusLabel7
  374. //
  375. this.toolStripStatusLabel7.Name = "toolStripStatusLabel7";
  376. this.toolStripStatusLabel7.Size = new System.Drawing.Size(212, 25);
  377. this.toolStripStatusLabel7.Text = "Current Job completion : ";
  378. //
  379. // toolStripProgressBar1
  380. //
  381. this.toolStripProgressBar1.Name = "toolStripProgressBar1";
  382. this.toolStripProgressBar1.Size = new System.Drawing.Size(300, 24);
  383. this.toolStripProgressBar1.Style = System.Windows.Forms.ProgressBarStyle.Continuous;
  384. //
  385. // label8
  386. //
  387. this.label8.AutoSize = true;
  388. this.label8.Font = new System.Drawing.Font("Segoe UI", 50F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
  389. this.label8.Location = new System.Drawing.Point(152, 788);
  390. this.label8.Name = "label8";
  391. this.label8.Size = new System.Drawing.Size(321, 133);
  392. this.label8.TabIndex = 10;
  393. this.label8.Text = "label8";
  394. //
  395. // backgroundWorker1
  396. //
  397. this.backgroundWorker1.DoWork += new System.ComponentModel.DoWorkEventHandler(this.backgroundWorker1_DoWork);
  398. this.backgroundWorker1.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.backgroundWorker1_RunWorkerCompleted);
  399. //
  400. // Form1
  401. //
  402. this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 25F);
  403. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  404. this.ClientSize = new System.Drawing.Size(1708, 1050);
  405. this.Controls.Add(this.label8);
  406. this.Controls.Add(this.statusStrip1);
  407. this.Controls.Add(this.label7);
  408. this.Controls.Add(this.label6);
  409. this.Controls.Add(this.label5);
  410. this.Controls.Add(this.label4);
  411. this.Controls.Add(this.label3);
  412. this.Controls.Add(this.label2);
  413. this.Controls.Add(this.label1);
  414. this.Controls.Add(this.TextBox1);
  415. this.Controls.Add(this.menuStrip1);
  416. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  417. this.MainMenuStrip = this.menuStrip1;
  418. this.Name = "Form1";
  419. this.Text = "Crusher Scanner";
  420. this.Load += new System.EventHandler(this.Form1_Load);
  421. this.menuStrip1.ResumeLayout(false);
  422. this.menuStrip1.PerformLayout();
  423. this.statusStrip1.ResumeLayout(false);
  424. this.statusStrip1.PerformLayout();
  425. this.ResumeLayout(false);
  426. this.PerformLayout();
  427. }
  428. #endregion
  429. private TextBox TextBox1;
  430. private MenuStrip menuStrip1;
  431. private ToolStripMenuItem menuToolStripMenuItem;
  432. private ToolStripMenuItem settingsToolStripMenuItem;
  433. private ToolStripMenuItem editToolStripMenuItem;
  434. private ToolStripSeparator toolStripSeparator1;
  435. private ToolStripMenuItem importToolStripMenuItem;
  436. private ToolStripMenuItem exportToolStripMenuItem;
  437. private ToolStripSeparator toolStripSeparator2;
  438. private ToolStripMenuItem logsToolStripMenuItem;
  439. private ToolStripMenuItem openCurrentToolStripMenuItem;
  440. private ToolStripMenuItem openDirectoryToolStripMenuItem;
  441. private ToolStripMenuItem purgeToolStripMenuItem;
  442. private ToolStripSeparator toolStripSeparator3;
  443. private ToolStripMenuItem reinitializeToolStripMenuItem;
  444. private ToolStripSeparator toolStripSeparator4;
  445. private ToolStripMenuItem ExitToolStripMenuItem;
  446. private ToolStripMenuItem reinitializeSettingsToolStripMenuItem;
  447. private ToolStripMenuItem testSettingsToolStripMenuItem;
  448. private ToolStripSeparator toolStripSeparator5;
  449. private ToolStripMenuItem purgeToolStripMenuItem1;
  450. private SaveFileDialog saveFileDialog1;
  451. private OpenFileDialog openFileDialog1;
  452. private Label label1;
  453. private Label label2;
  454. private Label label3;
  455. private Label label4;
  456. private Label label5;
  457. private System.Windows.Forms.Timer Timer1;
  458. private Label label6;
  459. private Label label7;
  460. private StatusStrip statusStrip1;
  461. private ToolStripStatusLabel toolStripStatusLabel1;
  462. private ToolStripStatusLabel toolStripStatusLabel2;
  463. private ToolStripStatusLabel toolStripStatusLabel3;
  464. private ToolStripStatusLabel toolStripStatusLabel7;
  465. private ToolStripProgressBar toolStripProgressBar1;
  466. private Label label8;
  467. private System.ComponentModel.BackgroundWorker backgroundWorker1;
  468. private ToolStripStatusLabel toolStripStatusLabel4;
  469. private ToolStripStatusLabel toolStripStatusLabel5;
  470. }
  471. }