AutoMakeQTY.Designer.cs 15 KB

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