AutoAnalysisXmlByStep.Designer.cs 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372
  1. namespace FileWatcher
  2. {
  3. partial class AutoAnalysisXmlByStep
  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.label4 = new System.Windows.Forms.Label();
  39. this.Master = new System.Windows.Forms.ComboBox();
  40. this.AutoStart = new System.Windows.Forms.CheckBox();
  41. this.Timer = new System.Windows.Forms.Timer(this.components);
  42. this.BackUpFolderPath = new System.Windows.Forms.TextBox();
  43. this.bei = new System.Windows.Forms.Label();
  44. this.button1 = new System.Windows.Forms.Button();
  45. this.Device = new System.Windows.Forms.ComboBox();
  46. this.label5 = new System.Windows.Forms.Label();
  47. this.li_code = new System.Windows.Forms.TextBox();
  48. this.label3 = new System.Windows.Forms.Label();
  49. this.label2 = new System.Windows.Forms.Label();
  50. this.MachineType = new System.Windows.Forms.TextBox();
  51. this.CleanFolderPath = new System.Windows.Forms.Button();
  52. this.CleanBackUpFolderPath = new System.Windows.Forms.Button();
  53. ((System.ComponentModel.ISupportInitialize)(this.XmlWatcher)).BeginInit();
  54. this.SuspendLayout();
  55. //
  56. // XmlWatcher
  57. //
  58. this.XmlWatcher.EnableRaisingEvents = true;
  59. this.XmlWatcher.Filter = "*.xml";
  60. this.XmlWatcher.IncludeSubdirectories = true;
  61. this.XmlWatcher.SynchronizingObject = this;
  62. //
  63. // StartWatch
  64. //
  65. this.StartWatch.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  66. this.StartWatch.Location = new System.Drawing.Point(290, 557);
  67. this.StartWatch.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  68. this.StartWatch.Name = "StartWatch";
  69. this.StartWatch.Size = new System.Drawing.Size(128, 56);
  70. this.StartWatch.TabIndex = 0;
  71. this.StartWatch.Text = "开始监控";
  72. this.StartWatch.UseVisualStyleBackColor = true;
  73. this.StartWatch.Click += new System.EventHandler(this.StartWatch_Click);
  74. //
  75. // StopWatch
  76. //
  77. this.StopWatch.Enabled = false;
  78. this.StopWatch.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  79. this.StopWatch.Location = new System.Drawing.Point(498, 557);
  80. this.StopWatch.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  81. this.StopWatch.Name = "StopWatch";
  82. this.StopWatch.Size = new System.Drawing.Size(128, 56);
  83. this.StopWatch.TabIndex = 1;
  84. this.StopWatch.Text = "停止监控";
  85. this.StopWatch.UseVisualStyleBackColor = true;
  86. this.StopWatch.Click += new System.EventHandler(this.StopWatch_Click);
  87. //
  88. // label1
  89. //
  90. this.label1.AutoSize = true;
  91. this.label1.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  92. this.label1.Location = new System.Drawing.Point(48, 350);
  93. this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  94. this.label1.Name = "label1";
  95. this.label1.Size = new System.Drawing.Size(162, 38);
  96. this.label1.TabIndex = 2;
  97. this.label1.Text = "监控文件夹";
  98. //
  99. // FolderPath
  100. //
  101. this.FolderPath.Enabled = false;
  102. this.FolderPath.Location = new System.Drawing.Point(218, 350);
  103. this.FolderPath.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  104. this.FolderPath.Name = "FolderPath";
  105. this.FolderPath.Size = new System.Drawing.Size(436, 35);
  106. this.FolderPath.TabIndex = 3;
  107. //
  108. // ChooseFolder
  109. //
  110. this.ChooseFolder.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  111. this.ChooseFolder.Location = new System.Drawing.Point(662, 340);
  112. this.ChooseFolder.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  113. this.ChooseFolder.Name = "ChooseFolder";
  114. this.ChooseFolder.Size = new System.Drawing.Size(156, 48);
  115. this.ChooseFolder.TabIndex = 6;
  116. this.ChooseFolder.Text = "选择文件夹";
  117. this.ChooseFolder.UseVisualStyleBackColor = true;
  118. this.ChooseFolder.Click += new System.EventHandler(this.ChooseFolder_Click);
  119. //
  120. // OperateResult
  121. //
  122. this.OperateResult.Location = new System.Drawing.Point(979, 12);
  123. this.OperateResult.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  124. this.OperateResult.Name = "OperateResult";
  125. this.OperateResult.Size = new System.Drawing.Size(506, 535);
  126. this.OperateResult.TabIndex = 7;
  127. this.OperateResult.Text = "";
  128. //
  129. // Clean
  130. //
  131. this.Clean.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  132. this.Clean.Location = new System.Drawing.Point(1169, 580);
  133. this.Clean.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  134. this.Clean.Name = "Clean";
  135. this.Clean.Size = new System.Drawing.Size(112, 48);
  136. this.Clean.TabIndex = 8;
  137. this.Clean.Text = "清除";
  138. this.Clean.UseVisualStyleBackColor = true;
  139. this.Clean.Click += new System.EventHandler(this.Clean_Click);
  140. //
  141. // label4
  142. //
  143. this.label4.AutoSize = true;
  144. this.label4.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  145. this.label4.Location = new System.Drawing.Point(54, 46);
  146. this.label4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  147. this.label4.Name = "label4";
  148. this.label4.Size = new System.Drawing.Size(133, 38);
  149. this.label4.TabIndex = 14;
  150. this.label4.Text = "账套选择";
  151. this.label4.Visible = false;
  152. //
  153. // Master
  154. //
  155. this.Master.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  156. this.Master.FormattingEnabled = true;
  157. this.Master.Location = new System.Drawing.Point(224, 46);
  158. this.Master.Margin = new System.Windows.Forms.Padding(6);
  159. this.Master.Name = "Master";
  160. this.Master.Size = new System.Drawing.Size(436, 32);
  161. this.Master.TabIndex = 15;
  162. this.Master.Visible = false;
  163. //
  164. // AutoStart
  165. //
  166. this.AutoStart.AutoSize = true;
  167. this.AutoStart.Checked = true;
  168. this.AutoStart.CheckState = System.Windows.Forms.CheckState.Checked;
  169. this.AutoStart.Location = new System.Drawing.Point(686, 51);
  170. this.AutoStart.Margin = new System.Windows.Forms.Padding(6);
  171. this.AutoStart.Name = "AutoStart";
  172. this.AutoStart.Size = new System.Drawing.Size(186, 28);
  173. this.AutoStart.TabIndex = 16;
  174. this.AutoStart.Text = "开机自动启动";
  175. this.AutoStart.UseVisualStyleBackColor = true;
  176. this.AutoStart.CheckedChanged += new System.EventHandler(this.AutoStart_CheckedChanged);
  177. //
  178. // Timer
  179. //
  180. this.Timer.Interval = 10000;
  181. this.Timer.Tick += new System.EventHandler(this.Timer_Tick);
  182. //
  183. // BackUpFolderPath
  184. //
  185. this.BackUpFolderPath.Enabled = false;
  186. this.BackUpFolderPath.Location = new System.Drawing.Point(218, 432);
  187. this.BackUpFolderPath.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  188. this.BackUpFolderPath.Name = "BackUpFolderPath";
  189. this.BackUpFolderPath.Size = new System.Drawing.Size(436, 35);
  190. this.BackUpFolderPath.TabIndex = 20;
  191. //
  192. // bei
  193. //
  194. this.bei.AutoSize = true;
  195. this.bei.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  196. this.bei.Location = new System.Drawing.Point(48, 432);
  197. this.bei.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  198. this.bei.Name = "bei";
  199. this.bei.Size = new System.Drawing.Size(162, 38);
  200. this.bei.TabIndex = 19;
  201. this.bei.Text = "备份文件夹";
  202. //
  203. // button1
  204. //
  205. this.button1.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  206. this.button1.Location = new System.Drawing.Point(662, 428);
  207. this.button1.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  208. this.button1.Name = "button1";
  209. this.button1.Size = new System.Drawing.Size(156, 48);
  210. this.button1.TabIndex = 21;
  211. this.button1.Text = "选择文件夹";
  212. this.button1.UseVisualStyleBackColor = true;
  213. this.button1.Click += new System.EventHandler(this.ChooseBackUpFolder_Click);
  214. //
  215. // Device
  216. //
  217. this.Device.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  218. this.Device.FormattingEnabled = true;
  219. this.Device.Items.AddRange(new object[] {
  220. "SPI",
  221. "镭雕机",
  222. "炉前AOI",
  223. "炉后AOI"});
  224. this.Device.Location = new System.Drawing.Point(218, 189);
  225. this.Device.Margin = new System.Windows.Forms.Padding(6);
  226. this.Device.Name = "Device";
  227. this.Device.Size = new System.Drawing.Size(436, 32);
  228. this.Device.TabIndex = 25;
  229. //
  230. // label5
  231. //
  232. this.label5.AutoSize = true;
  233. this.label5.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  234. this.label5.Location = new System.Drawing.Point(48, 189);
  235. this.label5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  236. this.label5.Name = "label5";
  237. this.label5.Size = new System.Drawing.Size(133, 38);
  238. this.label5.TabIndex = 24;
  239. this.label5.Text = "设备选择";
  240. //
  241. // li_code
  242. //
  243. this.li_code.Location = new System.Drawing.Point(218, 114);
  244. this.li_code.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  245. this.li_code.Name = "li_code";
  246. this.li_code.Size = new System.Drawing.Size(436, 35);
  247. this.li_code.TabIndex = 27;
  248. //
  249. // label3
  250. //
  251. this.label3.AutoSize = true;
  252. this.label3.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  253. this.label3.Location = new System.Drawing.Point(48, 114);
  254. this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  255. this.label3.Name = "label3";
  256. this.label3.Size = new System.Drawing.Size(75, 38);
  257. this.label3.TabIndex = 26;
  258. this.label3.Text = "线别";
  259. //
  260. // label2
  261. //
  262. this.label2.AutoSize = true;
  263. this.label2.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  264. this.label2.Location = new System.Drawing.Point(48, 262);
  265. this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  266. this.label2.Name = "label2";
  267. this.label2.Size = new System.Drawing.Size(75, 38);
  268. this.label2.TabIndex = 17;
  269. this.label2.Text = "机型";
  270. //
  271. // MachineType
  272. //
  273. this.MachineType.Location = new System.Drawing.Point(218, 262);
  274. this.MachineType.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  275. this.MachineType.Name = "MachineType";
  276. this.MachineType.Size = new System.Drawing.Size(436, 35);
  277. this.MachineType.TabIndex = 18;
  278. //
  279. // CleanFolderPath
  280. //
  281. this.CleanFolderPath.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  282. this.CleanFolderPath.Location = new System.Drawing.Point(839, 340);
  283. this.CleanFolderPath.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  284. this.CleanFolderPath.Name = "CleanFolderPath";
  285. this.CleanFolderPath.Size = new System.Drawing.Size(112, 48);
  286. this.CleanFolderPath.TabIndex = 28;
  287. this.CleanFolderPath.Text = "清除";
  288. this.CleanFolderPath.UseVisualStyleBackColor = true;
  289. this.CleanFolderPath.Click += new System.EventHandler(this.CleanFolderPath_Click);
  290. //
  291. // CleanBackUpFolderPath
  292. //
  293. this.CleanBackUpFolderPath.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  294. this.CleanBackUpFolderPath.Location = new System.Drawing.Point(839, 428);
  295. this.CleanBackUpFolderPath.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  296. this.CleanBackUpFolderPath.Name = "CleanBackUpFolderPath";
  297. this.CleanBackUpFolderPath.Size = new System.Drawing.Size(112, 48);
  298. this.CleanBackUpFolderPath.TabIndex = 29;
  299. this.CleanBackUpFolderPath.Text = "清除";
  300. this.CleanBackUpFolderPath.UseVisualStyleBackColor = true;
  301. this.CleanBackUpFolderPath.Click += new System.EventHandler(this.CleanBackUpFolderPath_Click);
  302. //
  303. // AutoAnalysisXmlByStep
  304. //
  305. this.AutoScaleDimensions = new System.Drawing.SizeF(12F, 24F);
  306. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  307. this.ClientSize = new System.Drawing.Size(1498, 640);
  308. this.Controls.Add(this.CleanBackUpFolderPath);
  309. this.Controls.Add(this.CleanFolderPath);
  310. this.Controls.Add(this.li_code);
  311. this.Controls.Add(this.label3);
  312. this.Controls.Add(this.Device);
  313. this.Controls.Add(this.label5);
  314. this.Controls.Add(this.button1);
  315. this.Controls.Add(this.BackUpFolderPath);
  316. this.Controls.Add(this.bei);
  317. this.Controls.Add(this.MachineType);
  318. this.Controls.Add(this.label2);
  319. this.Controls.Add(this.AutoStart);
  320. this.Controls.Add(this.Master);
  321. this.Controls.Add(this.label4);
  322. this.Controls.Add(this.Clean);
  323. this.Controls.Add(this.OperateResult);
  324. this.Controls.Add(this.ChooseFolder);
  325. this.Controls.Add(this.FolderPath);
  326. this.Controls.Add(this.label1);
  327. this.Controls.Add(this.StopWatch);
  328. this.Controls.Add(this.StartWatch);
  329. this.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  330. this.MaximizeBox = false;
  331. this.Name = "AutoAnalysisXmlByStep";
  332. this.Text = "UAS自动过站解析器 2024-04-23 14:15";
  333. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
  334. this.Load += new System.EventHandler(this.Form1_Load);
  335. ((System.ComponentModel.ISupportInitialize)(this.XmlWatcher)).EndInit();
  336. this.ResumeLayout(false);
  337. this.PerformLayout();
  338. }
  339. #endregion
  340. private System.IO.FileSystemWatcher XmlWatcher;
  341. private System.Windows.Forms.FolderBrowserDialog XmlFolder;
  342. private System.Windows.Forms.Button StopWatch;
  343. private System.Windows.Forms.Button StartWatch;
  344. private System.Windows.Forms.Label label1;
  345. private System.Windows.Forms.TextBox FolderPath;
  346. private System.Windows.Forms.Button ChooseFolder;
  347. private System.Windows.Forms.RichTextBox OperateResult;
  348. private System.Windows.Forms.Button Clean;
  349. private System.Windows.Forms.ComboBox Master;
  350. private System.Windows.Forms.Label label4;
  351. private System.Windows.Forms.CheckBox AutoStart;
  352. private System.Windows.Forms.Timer Timer;
  353. private System.Windows.Forms.TextBox BackUpFolderPath;
  354. private System.Windows.Forms.Label bei;
  355. private System.Windows.Forms.Button button1;
  356. private System.Windows.Forms.ComboBox Device;
  357. private System.Windows.Forms.Label label5;
  358. private System.Windows.Forms.TextBox li_code;
  359. private System.Windows.Forms.Label label3;
  360. private System.Windows.Forms.TextBox MachineType;
  361. private System.Windows.Forms.Label label2;
  362. private System.Windows.Forms.Button CleanBackUpFolderPath;
  363. private System.Windows.Forms.Button CleanFolderPath;
  364. }
  365. }