AutoAnalysisXml.Designer.cs 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413
  1. namespace FileWatcher
  2. {
  3. partial class AutoAnalysisXml
  4. {
  5. /// <summary>
  6. /// 必需的设计器变量。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 清理所有正在使用的资源。
  11. /// </summary>
  12. /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows 窗体设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要修改
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. this.XmlWatcher = new System.IO.FileSystemWatcher();
  30. this.XmlFolder = new System.Windows.Forms.FolderBrowserDialog();
  31. this.StartWatch = new System.Windows.Forms.Button();
  32. this.StopWatch = new System.Windows.Forms.Button();
  33. this.label1 = new System.Windows.Forms.Label();
  34. this.FolderPath = new System.Windows.Forms.TextBox();
  35. this.ChooseFolder = new System.Windows.Forms.Button();
  36. this.OperateResult = new System.Windows.Forms.RichTextBox();
  37. this.Clean = new System.Windows.Forms.Button();
  38. this.MakeCode_lable = new System.Windows.Forms.Label();
  39. this.label4 = new System.Windows.Forms.Label();
  40. this.Master = new System.Windows.Forms.ComboBox();
  41. this.AutoStart = new System.Windows.Forms.CheckBox();
  42. this.ma_code = new System.Windows.Forms.TextBox();
  43. this.BatchAnalysus = new System.Windows.Forms.Button();
  44. this.Timer = new System.Windows.Forms.Timer(this.components);
  45. this.Device = new System.Windows.Forms.ComboBox();
  46. this.label3 = new System.Windows.Forms.Label();
  47. this.MAC = new System.Windows.Forms.RadioButton();
  48. this.SN = new System.Windows.Forms.RadioButton();
  49. this.GetFiles = new System.Windows.Forms.Timer(this.components);
  50. this.sc_code = new System.Windows.Forms.TextBox();
  51. this.sc_code_label = new System.Windows.Forms.Label();
  52. this.em_code = new System.Windows.Forms.TextBox();
  53. this.label5 = new System.Windows.Forms.Label();
  54. this.button1 = new System.Windows.Forms.Button();
  55. this.BackUpFolderPath = new System.Windows.Forms.TextBox();
  56. this.bei = new System.Windows.Forms.Label();
  57. ((System.ComponentModel.ISupportInitialize)(this.XmlWatcher)).BeginInit();
  58. this.SuspendLayout();
  59. //
  60. // XmlWatcher
  61. //
  62. this.XmlWatcher.EnableRaisingEvents = true;
  63. this.XmlWatcher.Filter = "*.xml";
  64. this.XmlWatcher.SynchronizingObject = this;
  65. //
  66. // StartWatch
  67. //
  68. this.StartWatch.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  69. this.StartWatch.Location = new System.Drawing.Point(290, 557);
  70. this.StartWatch.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  71. this.StartWatch.Name = "StartWatch";
  72. this.StartWatch.Size = new System.Drawing.Size(128, 56);
  73. this.StartWatch.TabIndex = 0;
  74. this.StartWatch.Text = "开始监控";
  75. this.StartWatch.UseVisualStyleBackColor = true;
  76. this.StartWatch.Click += new System.EventHandler(this.StartWatch_Click);
  77. //
  78. // StopWatch
  79. //
  80. this.StopWatch.Enabled = false;
  81. this.StopWatch.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  82. this.StopWatch.Location = new System.Drawing.Point(498, 557);
  83. this.StopWatch.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  84. this.StopWatch.Name = "StopWatch";
  85. this.StopWatch.Size = new System.Drawing.Size(128, 56);
  86. this.StopWatch.TabIndex = 1;
  87. this.StopWatch.Text = "停止监控";
  88. this.StopWatch.UseVisualStyleBackColor = true;
  89. this.StopWatch.Click += new System.EventHandler(this.StopWatch_Click);
  90. //
  91. // label1
  92. //
  93. this.label1.AutoSize = true;
  94. this.label1.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  95. this.label1.Location = new System.Drawing.Point(48, 290);
  96. this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  97. this.label1.Name = "label1";
  98. this.label1.Size = new System.Drawing.Size(162, 38);
  99. this.label1.TabIndex = 2;
  100. this.label1.Text = "监控文件夹";
  101. //
  102. // FolderPath
  103. //
  104. this.FolderPath.Enabled = false;
  105. this.FolderPath.Location = new System.Drawing.Point(218, 290);
  106. this.FolderPath.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  107. this.FolderPath.Name = "FolderPath";
  108. this.FolderPath.Size = new System.Drawing.Size(436, 35);
  109. this.FolderPath.TabIndex = 3;
  110. //
  111. // ChooseFolder
  112. //
  113. this.ChooseFolder.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  114. this.ChooseFolder.Location = new System.Drawing.Point(686, 284);
  115. this.ChooseFolder.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  116. this.ChooseFolder.Name = "ChooseFolder";
  117. this.ChooseFolder.Size = new System.Drawing.Size(156, 48);
  118. this.ChooseFolder.TabIndex = 6;
  119. this.ChooseFolder.Text = "选择文件夹";
  120. this.ChooseFolder.UseVisualStyleBackColor = true;
  121. this.ChooseFolder.Click += new System.EventHandler(this.ChooseFolder_Click);
  122. //
  123. // OperateResult
  124. //
  125. this.OperateResult.Location = new System.Drawing.Point(892, 22);
  126. this.OperateResult.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  127. this.OperateResult.Name = "OperateResult";
  128. this.OperateResult.Size = new System.Drawing.Size(517, 535);
  129. this.OperateResult.TabIndex = 7;
  130. this.OperateResult.Text = "";
  131. //
  132. // Clean
  133. //
  134. this.Clean.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  135. this.Clean.Location = new System.Drawing.Point(1096, 580);
  136. this.Clean.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  137. this.Clean.Name = "Clean";
  138. this.Clean.Size = new System.Drawing.Size(112, 48);
  139. this.Clean.TabIndex = 8;
  140. this.Clean.Text = "清除";
  141. this.Clean.UseVisualStyleBackColor = true;
  142. this.Clean.Click += new System.EventHandler(this.Clean_Click);
  143. //
  144. // MakeCode_lable
  145. //
  146. this.MakeCode_lable.AutoSize = true;
  147. this.MakeCode_lable.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  148. this.MakeCode_lable.Location = new System.Drawing.Point(48, 201);
  149. this.MakeCode_lable.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  150. this.MakeCode_lable.Name = "MakeCode_lable";
  151. this.MakeCode_lable.Size = new System.Drawing.Size(104, 38);
  152. this.MakeCode_lable.TabIndex = 12;
  153. this.MakeCode_lable.Text = "工单号";
  154. //
  155. // label4
  156. //
  157. this.label4.AutoSize = true;
  158. this.label4.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  159. this.label4.Location = new System.Drawing.Point(54, 46);
  160. this.label4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  161. this.label4.Name = "label4";
  162. this.label4.Size = new System.Drawing.Size(133, 38);
  163. this.label4.TabIndex = 14;
  164. this.label4.Text = "账套选择";
  165. this.label4.Visible = false;
  166. //
  167. // Master
  168. //
  169. this.Master.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  170. this.Master.FormattingEnabled = true;
  171. this.Master.Location = new System.Drawing.Point(224, 46);
  172. this.Master.Margin = new System.Windows.Forms.Padding(6);
  173. this.Master.Name = "Master";
  174. this.Master.Size = new System.Drawing.Size(436, 32);
  175. this.Master.TabIndex = 15;
  176. this.Master.Visible = false;
  177. //
  178. // AutoStart
  179. //
  180. this.AutoStart.AutoSize = true;
  181. this.AutoStart.Location = new System.Drawing.Point(686, 51);
  182. this.AutoStart.Margin = new System.Windows.Forms.Padding(6);
  183. this.AutoStart.Name = "AutoStart";
  184. this.AutoStart.Size = new System.Drawing.Size(186, 28);
  185. this.AutoStart.TabIndex = 16;
  186. this.AutoStart.Text = "开机自动启动";
  187. this.AutoStart.UseVisualStyleBackColor = true;
  188. this.AutoStart.Visible = false;
  189. this.AutoStart.CheckedChanged += new System.EventHandler(this.AutoStart_CheckedChanged);
  190. //
  191. // ma_code
  192. //
  193. this.ma_code.Location = new System.Drawing.Point(218, 201);
  194. this.ma_code.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  195. this.ma_code.Name = "ma_code";
  196. this.ma_code.Size = new System.Drawing.Size(436, 35);
  197. this.ma_code.TabIndex = 17;
  198. //
  199. // BatchAnalysus
  200. //
  201. this.BatchAnalysus.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  202. this.BatchAnalysus.Location = new System.Drawing.Point(686, 198);
  203. this.BatchAnalysus.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  204. this.BatchAnalysus.Name = "BatchAnalysus";
  205. this.BatchAnalysus.Size = new System.Drawing.Size(156, 48);
  206. this.BatchAnalysus.TabIndex = 18;
  207. this.BatchAnalysus.Text = "批量解析";
  208. this.BatchAnalysus.UseVisualStyleBackColor = true;
  209. this.BatchAnalysus.Click += new System.EventHandler(this.BatchAnalysus_Click);
  210. //
  211. // Timer
  212. //
  213. this.Timer.Interval = 10000;
  214. this.Timer.Tick += new System.EventHandler(this.Timer_Tick);
  215. //
  216. // Device
  217. //
  218. this.Device.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  219. this.Device.FormattingEnabled = true;
  220. this.Device.Items.AddRange(new object[] {
  221. "AOI设备",
  222. "测试设备"});
  223. this.Device.Location = new System.Drawing.Point(218, 112);
  224. this.Device.Margin = new System.Windows.Forms.Padding(6);
  225. this.Device.Name = "Device";
  226. this.Device.Size = new System.Drawing.Size(436, 32);
  227. this.Device.TabIndex = 20;
  228. //
  229. // label3
  230. //
  231. this.label3.AutoSize = true;
  232. this.label3.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  233. this.label3.Location = new System.Drawing.Point(48, 112);
  234. this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  235. this.label3.Name = "label3";
  236. this.label3.Size = new System.Drawing.Size(133, 38);
  237. this.label3.TabIndex = 19;
  238. this.label3.Text = "设备选择";
  239. //
  240. // MAC
  241. //
  242. this.MAC.AutoSize = true;
  243. this.MAC.Checked = true;
  244. this.MAC.Location = new System.Drawing.Point(210, 507);
  245. this.MAC.Name = "MAC";
  246. this.MAC.Size = new System.Drawing.Size(77, 28);
  247. this.MAC.TabIndex = 21;
  248. this.MAC.TabStop = true;
  249. this.MAC.Text = "MAC";
  250. this.MAC.UseVisualStyleBackColor = true;
  251. //
  252. // SN
  253. //
  254. this.SN.AutoSize = true;
  255. this.SN.Location = new System.Drawing.Point(326, 507);
  256. this.SN.Name = "SN";
  257. this.SN.Size = new System.Drawing.Size(65, 28);
  258. this.SN.TabIndex = 22;
  259. this.SN.Text = "SN";
  260. this.SN.UseVisualStyleBackColor = true;
  261. //
  262. // GetFiles
  263. //
  264. this.GetFiles.Interval = 60000;
  265. this.GetFiles.Tick += new System.EventHandler(this.GetFiles_Tick);
  266. //
  267. // sc_code
  268. //
  269. this.sc_code.Location = new System.Drawing.Point(218, 426);
  270. this.sc_code.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  271. this.sc_code.Name = "sc_code";
  272. this.sc_code.Size = new System.Drawing.Size(158, 35);
  273. this.sc_code.TabIndex = 24;
  274. //
  275. // sc_code_label
  276. //
  277. this.sc_code_label.AutoSize = true;
  278. this.sc_code_label.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  279. this.sc_code_label.Location = new System.Drawing.Point(48, 426);
  280. this.sc_code_label.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  281. this.sc_code_label.Name = "sc_code_label";
  282. this.sc_code_label.Size = new System.Drawing.Size(133, 38);
  283. this.sc_code_label.TabIndex = 23;
  284. this.sc_code_label.Text = "岗位资源";
  285. //
  286. // em_code
  287. //
  288. this.em_code.Location = new System.Drawing.Point(594, 426);
  289. this.em_code.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  290. this.em_code.Name = "em_code";
  291. this.em_code.Size = new System.Drawing.Size(158, 35);
  292. this.em_code.TabIndex = 26;
  293. //
  294. // label5
  295. //
  296. this.label5.AutoSize = true;
  297. this.label5.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  298. this.label5.Location = new System.Drawing.Point(424, 426);
  299. this.label5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  300. this.label5.Name = "label5";
  301. this.label5.Size = new System.Drawing.Size(104, 38);
  302. this.label5.TabIndex = 25;
  303. this.label5.Text = "用户名";
  304. //
  305. // button1
  306. //
  307. this.button1.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  308. this.button1.Location = new System.Drawing.Point(686, 350);
  309. this.button1.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  310. this.button1.Name = "button1";
  311. this.button1.Size = new System.Drawing.Size(156, 48);
  312. this.button1.TabIndex = 32;
  313. this.button1.Text = "选择文件夹";
  314. this.button1.UseVisualStyleBackColor = true;
  315. this.button1.Click += new System.EventHandler(this.button1_Click);
  316. //
  317. // BackUpFolderPath
  318. //
  319. this.BackUpFolderPath.Enabled = false;
  320. this.BackUpFolderPath.Location = new System.Drawing.Point(218, 354);
  321. this.BackUpFolderPath.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  322. this.BackUpFolderPath.Name = "BackUpFolderPath";
  323. this.BackUpFolderPath.Size = new System.Drawing.Size(436, 35);
  324. this.BackUpFolderPath.TabIndex = 31;
  325. //
  326. // bei
  327. //
  328. this.bei.AutoSize = true;
  329. this.bei.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  330. this.bei.Location = new System.Drawing.Point(48, 354);
  331. this.bei.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  332. this.bei.Name = "bei";
  333. this.bei.Size = new System.Drawing.Size(162, 38);
  334. this.bei.TabIndex = 30;
  335. this.bei.Text = "备份文件夹";
  336. //
  337. // AutoAnalysisXml
  338. //
  339. this.AutoScaleDimensions = new System.Drawing.SizeF(12F, 24F);
  340. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  341. this.ClientSize = new System.Drawing.Size(1443, 640);
  342. this.Controls.Add(this.button1);
  343. this.Controls.Add(this.BackUpFolderPath);
  344. this.Controls.Add(this.bei);
  345. this.Controls.Add(this.em_code);
  346. this.Controls.Add(this.label5);
  347. this.Controls.Add(this.sc_code);
  348. this.Controls.Add(this.sc_code_label);
  349. this.Controls.Add(this.SN);
  350. this.Controls.Add(this.MAC);
  351. this.Controls.Add(this.Device);
  352. this.Controls.Add(this.label3);
  353. this.Controls.Add(this.BatchAnalysus);
  354. this.Controls.Add(this.ma_code);
  355. this.Controls.Add(this.AutoStart);
  356. this.Controls.Add(this.Master);
  357. this.Controls.Add(this.label4);
  358. this.Controls.Add(this.MakeCode_lable);
  359. this.Controls.Add(this.Clean);
  360. this.Controls.Add(this.OperateResult);
  361. this.Controls.Add(this.ChooseFolder);
  362. this.Controls.Add(this.FolderPath);
  363. this.Controls.Add(this.label1);
  364. this.Controls.Add(this.StopWatch);
  365. this.Controls.Add(this.StartWatch);
  366. this.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  367. this.MaximizeBox = false;
  368. this.Name = "AutoAnalysisXml";
  369. this.Text = "UAS自动过站解析器 2026-04-29";
  370. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
  371. this.Load += new System.EventHandler(this.Form1_Load);
  372. ((System.ComponentModel.ISupportInitialize)(this.XmlWatcher)).EndInit();
  373. this.ResumeLayout(false);
  374. this.PerformLayout();
  375. }
  376. #endregion
  377. private System.IO.FileSystemWatcher XmlWatcher;
  378. private System.Windows.Forms.FolderBrowserDialog XmlFolder;
  379. private System.Windows.Forms.Button StopWatch;
  380. private System.Windows.Forms.Button StartWatch;
  381. private System.Windows.Forms.Label label1;
  382. private System.Windows.Forms.TextBox FolderPath;
  383. private System.Windows.Forms.Button ChooseFolder;
  384. private System.Windows.Forms.RichTextBox OperateResult;
  385. private System.Windows.Forms.Button Clean;
  386. private System.Windows.Forms.Label MakeCode_lable;
  387. private System.Windows.Forms.ComboBox Master;
  388. private System.Windows.Forms.Label label4;
  389. private System.Windows.Forms.CheckBox AutoStart;
  390. private System.Windows.Forms.TextBox ma_code;
  391. private System.Windows.Forms.Button BatchAnalysus;
  392. private System.Windows.Forms.Timer Timer;
  393. private System.Windows.Forms.ComboBox Device;
  394. private System.Windows.Forms.Label label3;
  395. private System.Windows.Forms.RadioButton SN;
  396. private System.Windows.Forms.RadioButton MAC;
  397. private System.Windows.Forms.Timer GetFiles;
  398. private System.Windows.Forms.TextBox em_code;
  399. private System.Windows.Forms.Label label5;
  400. private System.Windows.Forms.TextBox sc_code;
  401. private System.Windows.Forms.Label sc_code_label;
  402. private System.Windows.Forms.Button button1;
  403. private System.Windows.Forms.TextBox BackUpFolderPath;
  404. private System.Windows.Forms.Label bei;
  405. }
  406. }