AutoMakeQTYRZ.Designer.cs 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398
  1. namespace FileWatcher
  2. {
  3. partial class AutoMakeQTYRZ
  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.OperateResult = new System.Windows.Forms.RichTextBox();
  34. this.Clean = new System.Windows.Forms.Button();
  35. this.MakeCode_lable = new System.Windows.Forms.Label();
  36. this.Timer = new System.Windows.Forms.Timer(this.components);
  37. this.ATEFile = new System.IO.FileSystemWatcher();
  38. this.Type = new System.Windows.Forms.ComboBox();
  39. this.label1 = new System.Windows.Forms.Label();
  40. this.AutoStart = new System.Windows.Forms.CheckBox();
  41. this.label2 = new System.Windows.Forms.Label();
  42. this.label3 = new System.Windows.Forms.Label();
  43. this.BaudRate = new System.Windows.Forms.TextBox();
  44. this.NowQTY = new System.Windows.Forms.TextBox();
  45. this.label4 = new System.Windows.Forms.Label();
  46. this.label5 = new System.Windows.Forms.Label();
  47. this.GetData = new System.Windows.Forms.Button();
  48. this.FunctionNum = new System.Windows.Forms.TextBox();
  49. this.label6 = new System.Windows.Forms.Label();
  50. this.ma_code = new FileWatcher.SearchTextBox();
  51. this.li_code = new FileWatcher.SearchTextBox();
  52. this.ComPort = new FileWatcher.SerialPortCombox();
  53. this.FunctionNum1 = new System.Windows.Forms.TextBox();
  54. this.label7 = new System.Windows.Forms.Label();
  55. ((System.ComponentModel.ISupportInitialize)(this.XmlWatcher)).BeginInit();
  56. ((System.ComponentModel.ISupportInitialize)(this.ATEFile)).BeginInit();
  57. this.SuspendLayout();
  58. //
  59. // XmlWatcher
  60. //
  61. this.XmlWatcher.EnableRaisingEvents = true;
  62. this.XmlWatcher.Filter = "*.log";
  63. this.XmlWatcher.SynchronizingObject = this;
  64. //
  65. // StartWatch
  66. //
  67. this.StartWatch.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  68. this.StartWatch.Location = new System.Drawing.Point(290, 557);
  69. this.StartWatch.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  70. this.StartWatch.Name = "StartWatch";
  71. this.StartWatch.Size = new System.Drawing.Size(128, 56);
  72. this.StartWatch.TabIndex = 0;
  73. this.StartWatch.Text = "开始监控";
  74. this.StartWatch.UseVisualStyleBackColor = true;
  75. this.StartWatch.Click += new System.EventHandler(this.StartWatch_Click);
  76. //
  77. // StopWatch
  78. //
  79. this.StopWatch.Enabled = false;
  80. this.StopWatch.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  81. this.StopWatch.Location = new System.Drawing.Point(700, 557);
  82. this.StopWatch.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  83. this.StopWatch.Name = "StopWatch";
  84. this.StopWatch.Size = new System.Drawing.Size(128, 56);
  85. this.StopWatch.TabIndex = 1;
  86. this.StopWatch.Text = "停止监控";
  87. this.StopWatch.UseVisualStyleBackColor = true;
  88. this.StopWatch.Click += new System.EventHandler(this.StopWatch_Click);
  89. //
  90. // OperateResult
  91. //
  92. this.OperateResult.Location = new System.Drawing.Point(892, 22);
  93. this.OperateResult.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  94. this.OperateResult.Name = "OperateResult";
  95. this.OperateResult.Size = new System.Drawing.Size(517, 535);
  96. this.OperateResult.TabIndex = 7;
  97. this.OperateResult.Text = "";
  98. //
  99. // Clean
  100. //
  101. this.Clean.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  102. this.Clean.Location = new System.Drawing.Point(1096, 580);
  103. this.Clean.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  104. this.Clean.Name = "Clean";
  105. this.Clean.Size = new System.Drawing.Size(112, 48);
  106. this.Clean.TabIndex = 8;
  107. this.Clean.Text = "清除";
  108. this.Clean.UseVisualStyleBackColor = true;
  109. this.Clean.Click += new System.EventHandler(this.Clean_Click);
  110. //
  111. // MakeCode_lable
  112. //
  113. this.MakeCode_lable.AutoSize = true;
  114. this.MakeCode_lable.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  115. this.MakeCode_lable.Location = new System.Drawing.Point(34, 220);
  116. this.MakeCode_lable.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  117. this.MakeCode_lable.Name = "MakeCode_lable";
  118. this.MakeCode_lable.Size = new System.Drawing.Size(104, 38);
  119. this.MakeCode_lable.TabIndex = 12;
  120. this.MakeCode_lable.Text = "工单号";
  121. //
  122. // Timer
  123. //
  124. this.Timer.Interval = 1000;
  125. this.Timer.Tick += new System.EventHandler(this.Timer_Tick);
  126. //
  127. // ATEFile
  128. //
  129. this.ATEFile.EnableRaisingEvents = true;
  130. this.ATEFile.Filter = "*.txt";
  131. this.ATEFile.SynchronizingObject = this;
  132. //
  133. // Type
  134. //
  135. this.Type.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  136. this.Type.FormattingEnabled = true;
  137. this.Type.Items.AddRange(new object[] {
  138. "投入",
  139. "产出"});
  140. this.Type.Location = new System.Drawing.Point(204, 44);
  141. this.Type.Name = "Type";
  142. this.Type.Size = new System.Drawing.Size(436, 32);
  143. this.Type.TabIndex = 18;
  144. this.Type.Visible = false;
  145. //
  146. // label1
  147. //
  148. this.label1.AutoSize = true;
  149. this.label1.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  150. this.label1.Location = new System.Drawing.Point(34, 38);
  151. this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  152. this.label1.Name = "label1";
  153. this.label1.Size = new System.Drawing.Size(75, 38);
  154. this.label1.TabIndex = 19;
  155. this.label1.Text = "类型";
  156. this.label1.Visible = false;
  157. //
  158. // AutoStart
  159. //
  160. this.AutoStart.AutoSize = true;
  161. this.AutoStart.Checked = true;
  162. this.AutoStart.CheckState = System.Windows.Forms.CheckState.Checked;
  163. this.AutoStart.Location = new System.Drawing.Point(678, 227);
  164. this.AutoStart.Name = "AutoStart";
  165. this.AutoStart.Size = new System.Drawing.Size(186, 28);
  166. this.AutoStart.TabIndex = 20;
  167. this.AutoStart.Text = "开机自动启动";
  168. this.AutoStart.UseVisualStyleBackColor = true;
  169. //
  170. // label2
  171. //
  172. this.label2.AutoSize = true;
  173. this.label2.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  174. this.label2.Location = new System.Drawing.Point(34, 120);
  175. this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  176. this.label2.Name = "label2";
  177. this.label2.Size = new System.Drawing.Size(75, 38);
  178. this.label2.TabIndex = 22;
  179. this.label2.Text = "串口";
  180. //
  181. // label3
  182. //
  183. this.label3.AutoSize = true;
  184. this.label3.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  185. this.label3.Location = new System.Drawing.Point(426, 120);
  186. this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  187. this.label3.Name = "label3";
  188. this.label3.Size = new System.Drawing.Size(104, 38);
  189. this.label3.TabIndex = 23;
  190. this.label3.Text = "波特率";
  191. //
  192. // BaudRate
  193. //
  194. this.BaudRate.Location = new System.Drawing.Point(564, 120);
  195. this.BaudRate.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  196. this.BaudRate.Name = "BaudRate";
  197. this.BaudRate.Size = new System.Drawing.Size(146, 35);
  198. this.BaudRate.TabIndex = 24;
  199. //
  200. // NowQTY
  201. //
  202. this.NowQTY.Location = new System.Drawing.Point(204, 373);
  203. this.NowQTY.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  204. this.NowQTY.Name = "NowQTY";
  205. this.NowQTY.Size = new System.Drawing.Size(146, 35);
  206. this.NowQTY.TabIndex = 26;
  207. //
  208. // label4
  209. //
  210. this.label4.AutoSize = true;
  211. this.label4.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  212. this.label4.Location = new System.Drawing.Point(34, 370);
  213. this.label4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  214. this.label4.Name = "label4";
  215. this.label4.Size = new System.Drawing.Size(133, 38);
  216. this.label4.TabIndex = 25;
  217. this.label4.Text = "当前计数";
  218. //
  219. // label5
  220. //
  221. this.label5.AutoSize = true;
  222. this.label5.Font = new System.Drawing.Font("微软雅黑", 12F);
  223. this.label5.Location = new System.Drawing.Point(34, 291);
  224. this.label5.Name = "label5";
  225. this.label5.Size = new System.Drawing.Size(82, 41);
  226. this.label5.TabIndex = 27;
  227. this.label5.Text = "线别";
  228. //
  229. // GetData
  230. //
  231. this.GetData.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  232. this.GetData.Location = new System.Drawing.Point(492, 557);
  233. this.GetData.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  234. this.GetData.Name = "GetData";
  235. this.GetData.Size = new System.Drawing.Size(128, 56);
  236. this.GetData.TabIndex = 30;
  237. this.GetData.Text = "获取数据";
  238. this.GetData.UseVisualStyleBackColor = true;
  239. this.GetData.Click += new System.EventHandler(this.GetData_Click);
  240. //
  241. // FunctionNum
  242. //
  243. this.FunctionNum.AccessibleRole = System.Windows.Forms.AccessibleRole.SplitButton;
  244. this.FunctionNum.Location = new System.Drawing.Point(567, 376);
  245. this.FunctionNum.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  246. this.FunctionNum.Name = "FunctionNum";
  247. this.FunctionNum.Size = new System.Drawing.Size(146, 35);
  248. this.FunctionNum.TabIndex = 32;
  249. //
  250. // label6
  251. //
  252. this.label6.AutoSize = true;
  253. this.label6.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  254. this.label6.Location = new System.Drawing.Point(397, 373);
  255. this.label6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  256. this.label6.Name = "label6";
  257. this.label6.Size = new System.Drawing.Size(133, 38);
  258. this.label6.TabIndex = 31;
  259. this.label6.Text = "功率下限";
  260. //
  261. // ma_code
  262. //
  263. this.ma_code.AllPower = null;
  264. this.ma_code.Caller = null;
  265. this.ma_code.Condition = null;
  266. this.ma_code.DBTitle = null;
  267. this.ma_code.FormName = null;
  268. this.ma_code.Location = new System.Drawing.Point(204, 214);
  269. this.ma_code.Name = "ma_code";
  270. this.ma_code.Power = null;
  271. this.ma_code.ReturnData = null;
  272. this.ma_code.SelectField = null;
  273. this.ma_code.SetValueField = null;
  274. this.ma_code.Size = new System.Drawing.Size(436, 41);
  275. this.ma_code.TabIndex = 29;
  276. this.ma_code.TableName = null;
  277. this.ma_code.TextBoxEnable = false;
  278. //
  279. // li_code
  280. //
  281. this.li_code.AllPower = null;
  282. this.li_code.Caller = null;
  283. this.li_code.Condition = null;
  284. this.li_code.DBTitle = null;
  285. this.li_code.FormName = null;
  286. this.li_code.Location = new System.Drawing.Point(204, 291);
  287. this.li_code.Name = "li_code";
  288. this.li_code.Power = null;
  289. this.li_code.ReturnData = null;
  290. this.li_code.SelectField = null;
  291. this.li_code.SetValueField = null;
  292. this.li_code.Size = new System.Drawing.Size(436, 41);
  293. this.li_code.TabIndex = 28;
  294. this.li_code.TableName = null;
  295. this.li_code.TextBoxEnable = false;
  296. //
  297. // ComPort
  298. //
  299. this.ComPort.Location = new System.Drawing.Point(204, 120);
  300. this.ComPort.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  301. this.ComPort.Name = "ComPort";
  302. this.ComPort.Size = new System.Drawing.Size(176, 40);
  303. this.ComPort.TabIndex = 21;
  304. //
  305. // FunctionNum1
  306. //
  307. this.FunctionNum1.AccessibleRole = System.Windows.Forms.AccessibleRole.SplitButton;
  308. this.FunctionNum1.Location = new System.Drawing.Point(567, 431);
  309. this.FunctionNum1.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  310. this.FunctionNum1.Name = "FunctionNum1";
  311. this.FunctionNum1.Size = new System.Drawing.Size(146, 35);
  312. this.FunctionNum1.TabIndex = 34;
  313. //
  314. // label7
  315. //
  316. this.label7.AutoSize = true;
  317. this.label7.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  318. this.label7.Location = new System.Drawing.Point(397, 428);
  319. this.label7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  320. this.label7.Name = "label7";
  321. this.label7.Size = new System.Drawing.Size(133, 38);
  322. this.label7.TabIndex = 33;
  323. this.label7.Text = "功率上限";
  324. //
  325. // AutoMakeQTYRZ
  326. //
  327. this.AutoScaleDimensions = new System.Drawing.SizeF(12F, 24F);
  328. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  329. this.ClientSize = new System.Drawing.Size(1443, 640);
  330. this.Controls.Add(this.FunctionNum1);
  331. this.Controls.Add(this.label7);
  332. this.Controls.Add(this.FunctionNum);
  333. this.Controls.Add(this.label6);
  334. this.Controls.Add(this.GetData);
  335. this.Controls.Add(this.ma_code);
  336. this.Controls.Add(this.li_code);
  337. this.Controls.Add(this.label5);
  338. this.Controls.Add(this.NowQTY);
  339. this.Controls.Add(this.label4);
  340. this.Controls.Add(this.BaudRate);
  341. this.Controls.Add(this.label3);
  342. this.Controls.Add(this.label2);
  343. this.Controls.Add(this.ComPort);
  344. this.Controls.Add(this.AutoStart);
  345. this.Controls.Add(this.label1);
  346. this.Controls.Add(this.Type);
  347. this.Controls.Add(this.MakeCode_lable);
  348. this.Controls.Add(this.Clean);
  349. this.Controls.Add(this.OperateResult);
  350. this.Controls.Add(this.StopWatch);
  351. this.Controls.Add(this.StartWatch);
  352. this.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  353. this.MaximizeBox = false;
  354. this.Name = "AutoMakeQTYRZ";
  355. this.Text = "UAS设备数据解析 2024-11-29 10:05";
  356. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
  357. this.Load += new System.EventHandler(this.Form1_Load);
  358. ((System.ComponentModel.ISupportInitialize)(this.XmlWatcher)).EndInit();
  359. ((System.ComponentModel.ISupportInitialize)(this.ATEFile)).EndInit();
  360. this.ResumeLayout(false);
  361. this.PerformLayout();
  362. }
  363. #endregion
  364. private System.IO.FileSystemWatcher XmlWatcher;
  365. private System.Windows.Forms.FolderBrowserDialog XmlFolder;
  366. private System.Windows.Forms.Button StopWatch;
  367. private System.Windows.Forms.Button StartWatch;
  368. private System.Windows.Forms.RichTextBox OperateResult;
  369. private System.Windows.Forms.Button Clean;
  370. private System.Windows.Forms.Label MakeCode_lable;
  371. private System.Windows.Forms.Timer Timer;
  372. private System.IO.FileSystemWatcher ATEFile;
  373. private System.Windows.Forms.ComboBox Type;
  374. private System.Windows.Forms.Label label1;
  375. private System.Windows.Forms.CheckBox AutoStart;
  376. private SerialPortCombox ComPort;
  377. private System.Windows.Forms.Label label2;
  378. private System.Windows.Forms.Label label3;
  379. private System.Windows.Forms.TextBox BaudRate;
  380. private System.Windows.Forms.TextBox NowQTY;
  381. private System.Windows.Forms.Label label4;
  382. private SearchTextBox li_code;
  383. private System.Windows.Forms.Label label5;
  384. private SearchTextBox ma_code;
  385. private System.Windows.Forms.Button GetData;
  386. private System.Windows.Forms.TextBox FunctionNum;
  387. private System.Windows.Forms.Label label6;
  388. private System.Windows.Forms.TextBox FunctionNum1;
  389. private System.Windows.Forms.Label label7;
  390. }
  391. }