AutoSMTRXY.Designer.cs 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582
  1. namespace FileWatcher
  2. {
  3. partial class AutoSMTRXY
  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.OperateResult = new System.Windows.Forms.RichTextBox();
  30. this.Clean = new System.Windows.Forms.Button();
  31. this.MakeCode_lable = new System.Windows.Forms.Label();
  32. this.Type = new System.Windows.Forms.ComboBox();
  33. this.label1 = new System.Windows.Forms.Label();
  34. this.AutoStart = new System.Windows.Forms.CheckBox();
  35. this.NowQTY = new System.Windows.Forms.TextBox();
  36. this.label4 = new System.Windows.Forms.Label();
  37. this.label5 = new System.Windows.Forms.Label();
  38. this.label2 = new System.Windows.Forms.Label();
  39. this.RemindTimer = new System.Windows.Forms.Timer(this.components);
  40. this.RemindVoice = new System.Windows.Forms.CheckBox();
  41. this.SN = new System.Windows.Forms.RadioButton();
  42. this.Counter = new System.Windows.Forms.RadioButton();
  43. this.StopWatch = new System.Windows.Forms.Button();
  44. this.StartWatch = new System.Windows.Forms.Button();
  45. this.BaudRate = new System.Windows.Forms.TextBox();
  46. this.label3 = new System.Windows.Forms.Label();
  47. this.label6 = new System.Windows.Forms.Label();
  48. this.Timer = new System.Windows.Forms.Timer(this.components);
  49. this.pr_pcbacount = new System.Windows.Forms.NumericUpDown();
  50. this.label7 = new System.Windows.Forms.Label();
  51. this.Read = new System.Windows.Forms.TextBox();
  52. this.label8 = new System.Windows.Forms.Label();
  53. this.Write = new System.Windows.Forms.TextBox();
  54. this.label9 = new System.Windows.Forms.Label();
  55. this.ToZero = new System.Windows.Forms.TextBox();
  56. this.label10 = new System.Windows.Forms.Label();
  57. this.CleanData = new System.Windows.Forms.Button();
  58. this.Setting = new System.Windows.Forms.Button();
  59. this.label11 = new System.Windows.Forms.Label();
  60. this.CountType = new System.Windows.Forms.ComboBox();
  61. this.ComPort = new FileWatcher.SerialPortCombox();
  62. this.ms_sncode = new FileWatcher.EnterTextBox();
  63. this.ma_code = new FileWatcher.SearchTextBox();
  64. this.li_code = new FileWatcher.SearchTextBox();
  65. this.UseScan = new System.Windows.Forms.TextBox();
  66. this.label12 = new System.Windows.Forms.Label();
  67. ((System.ComponentModel.ISupportInitialize)(this.pr_pcbacount)).BeginInit();
  68. this.SuspendLayout();
  69. //
  70. // OperateResult
  71. //
  72. this.OperateResult.Location = new System.Drawing.Point(1188, 23);
  73. this.OperateResult.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  74. this.OperateResult.Name = "OperateResult";
  75. this.OperateResult.Size = new System.Drawing.Size(489, 535);
  76. this.OperateResult.TabIndex = 7;
  77. this.OperateResult.Text = "";
  78. //
  79. // Clean
  80. //
  81. this.Clean.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  82. this.Clean.Location = new System.Drawing.Point(1380, 580);
  83. this.Clean.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  84. this.Clean.Name = "Clean";
  85. this.Clean.Size = new System.Drawing.Size(112, 48);
  86. this.Clean.TabIndex = 8;
  87. this.Clean.Text = "清除";
  88. this.Clean.UseVisualStyleBackColor = true;
  89. this.Clean.Click += new System.EventHandler(this.Clean_Click);
  90. //
  91. // MakeCode_lable
  92. //
  93. this.MakeCode_lable.AutoSize = true;
  94. this.MakeCode_lable.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  95. this.MakeCode_lable.Location = new System.Drawing.Point(51, 120);
  96. this.MakeCode_lable.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  97. this.MakeCode_lable.Name = "MakeCode_lable";
  98. this.MakeCode_lable.Size = new System.Drawing.Size(104, 38);
  99. this.MakeCode_lable.TabIndex = 12;
  100. this.MakeCode_lable.Text = "工单号";
  101. //
  102. // Type
  103. //
  104. this.Type.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  105. this.Type.FormattingEnabled = true;
  106. this.Type.Items.AddRange(new object[] {
  107. "投入",
  108. "产出"});
  109. this.Type.Location = new System.Drawing.Point(221, 267);
  110. this.Type.Name = "Type";
  111. this.Type.Size = new System.Drawing.Size(436, 32);
  112. this.Type.TabIndex = 18;
  113. //
  114. // label1
  115. //
  116. this.label1.AutoSize = true;
  117. this.label1.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  118. this.label1.Location = new System.Drawing.Point(51, 261);
  119. this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  120. this.label1.Name = "label1";
  121. this.label1.Size = new System.Drawing.Size(75, 38);
  122. this.label1.TabIndex = 19;
  123. this.label1.Text = "类型";
  124. //
  125. // AutoStart
  126. //
  127. this.AutoStart.AutoSize = true;
  128. this.AutoStart.Checked = true;
  129. this.AutoStart.CheckState = System.Windows.Forms.CheckState.Checked;
  130. this.AutoStart.Location = new System.Drawing.Point(695, 127);
  131. this.AutoStart.Name = "AutoStart";
  132. this.AutoStart.Size = new System.Drawing.Size(186, 28);
  133. this.AutoStart.TabIndex = 20;
  134. this.AutoStart.Text = "开机自动启动";
  135. this.AutoStart.UseVisualStyleBackColor = true;
  136. //
  137. // NowQTY
  138. //
  139. this.NowQTY.Location = new System.Drawing.Point(221, 346);
  140. this.NowQTY.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  141. this.NowQTY.Name = "NowQTY";
  142. this.NowQTY.Size = new System.Drawing.Size(146, 35);
  143. this.NowQTY.TabIndex = 26;
  144. //
  145. // label4
  146. //
  147. this.label4.AutoSize = true;
  148. this.label4.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  149. this.label4.Location = new System.Drawing.Point(51, 343);
  150. this.label4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  151. this.label4.Name = "label4";
  152. this.label4.Size = new System.Drawing.Size(133, 38);
  153. this.label4.TabIndex = 25;
  154. this.label4.Text = "当前计数";
  155. //
  156. // label5
  157. //
  158. this.label5.AutoSize = true;
  159. this.label5.Font = new System.Drawing.Font("微软雅黑", 12F);
  160. this.label5.Location = new System.Drawing.Point(51, 191);
  161. this.label5.Name = "label5";
  162. this.label5.Size = new System.Drawing.Size(82, 41);
  163. this.label5.TabIndex = 27;
  164. this.label5.Text = "线别";
  165. //
  166. // label2
  167. //
  168. this.label2.AutoSize = true;
  169. this.label2.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  170. this.label2.Location = new System.Drawing.Point(51, 424);
  171. this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  172. this.label2.Name = "label2";
  173. this.label2.Size = new System.Drawing.Size(104, 38);
  174. this.label2.TabIndex = 34;
  175. this.label2.Text = "录入框";
  176. //
  177. // RemindTimer
  178. //
  179. this.RemindTimer.Interval = 5000;
  180. this.RemindTimer.Tick += new System.EventHandler(this.RemindTimer_Tick);
  181. //
  182. // RemindVoice
  183. //
  184. this.RemindVoice.AutoSize = true;
  185. this.RemindVoice.Checked = true;
  186. this.RemindVoice.CheckState = System.Windows.Forms.CheckState.Checked;
  187. this.RemindVoice.Location = new System.Drawing.Point(695, 191);
  188. this.RemindVoice.Name = "RemindVoice";
  189. this.RemindVoice.Size = new System.Drawing.Size(162, 28);
  190. this.RemindVoice.TabIndex = 35;
  191. this.RemindVoice.Text = "开启提示音";
  192. this.RemindVoice.UseVisualStyleBackColor = true;
  193. //
  194. // SN
  195. //
  196. this.SN.AutoSize = true;
  197. this.SN.Location = new System.Drawing.Point(221, 486);
  198. this.SN.Name = "SN";
  199. this.SN.Size = new System.Drawing.Size(113, 28);
  200. this.SN.TabIndex = 37;
  201. this.SN.Text = "扫描SN";
  202. this.SN.UseVisualStyleBackColor = true;
  203. //
  204. // Counter
  205. //
  206. this.Counter.AutoSize = true;
  207. this.Counter.Checked = true;
  208. this.Counter.Location = new System.Drawing.Point(357, 486);
  209. this.Counter.Name = "Counter";
  210. this.Counter.Size = new System.Drawing.Size(113, 28);
  211. this.Counter.TabIndex = 36;
  212. this.Counter.TabStop = true;
  213. this.Counter.Text = "计数器";
  214. this.Counter.UseVisualStyleBackColor = true;
  215. //
  216. // StopWatch
  217. //
  218. this.StopWatch.Enabled = false;
  219. this.StopWatch.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  220. this.StopWatch.Location = new System.Drawing.Point(402, 552);
  221. this.StopWatch.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  222. this.StopWatch.Name = "StopWatch";
  223. this.StopWatch.Size = new System.Drawing.Size(128, 56);
  224. this.StopWatch.TabIndex = 39;
  225. this.StopWatch.Text = "停止监控";
  226. this.StopWatch.UseVisualStyleBackColor = true;
  227. this.StopWatch.Click += new System.EventHandler(this.StopWatch_Click);
  228. //
  229. // StartWatch
  230. //
  231. this.StartWatch.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  232. this.StartWatch.Location = new System.Drawing.Point(206, 552);
  233. this.StartWatch.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  234. this.StartWatch.Name = "StartWatch";
  235. this.StartWatch.Size = new System.Drawing.Size(128, 56);
  236. this.StartWatch.TabIndex = 38;
  237. this.StartWatch.Text = "开始监控";
  238. this.StartWatch.UseVisualStyleBackColor = true;
  239. this.StartWatch.Click += new System.EventHandler(this.StartWatch_Click);
  240. //
  241. // BaudRate
  242. //
  243. this.BaudRate.Location = new System.Drawing.Point(990, 222);
  244. this.BaudRate.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  245. this.BaudRate.Name = "BaudRate";
  246. this.BaudRate.Size = new System.Drawing.Size(146, 35);
  247. this.BaudRate.TabIndex = 43;
  248. this.BaudRate.Text = "9600";
  249. //
  250. // label3
  251. //
  252. this.label3.AutoSize = true;
  253. this.label3.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  254. this.label3.Location = new System.Drawing.Point(866, 222);
  255. this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  256. this.label3.Name = "label3";
  257. this.label3.Size = new System.Drawing.Size(104, 38);
  258. this.label3.TabIndex = 42;
  259. this.label3.Text = "波特率";
  260. //
  261. // label6
  262. //
  263. this.label6.AutoSize = true;
  264. this.label6.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  265. this.label6.Location = new System.Drawing.Point(895, 170);
  266. this.label6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  267. this.label6.Name = "label6";
  268. this.label6.Size = new System.Drawing.Size(75, 38);
  269. this.label6.TabIndex = 41;
  270. this.label6.Text = "串口";
  271. //
  272. // Timer
  273. //
  274. this.Timer.Interval = 2000;
  275. this.Timer.Tick += new System.EventHandler(this.Timer_Tick);
  276. //
  277. // pr_pcbacount
  278. //
  279. this.pr_pcbacount.Location = new System.Drawing.Point(537, 346);
  280. this.pr_pcbacount.Name = "pr_pcbacount";
  281. this.pr_pcbacount.Size = new System.Drawing.Size(120, 35);
  282. this.pr_pcbacount.TabIndex = 45;
  283. this.pr_pcbacount.Value = new decimal(new int[] {
  284. 1,
  285. 0,
  286. 0,
  287. 0});
  288. //
  289. // label7
  290. //
  291. this.label7.AutoSize = true;
  292. this.label7.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  293. this.label7.Location = new System.Drawing.Point(409, 343);
  294. this.label7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  295. this.label7.Name = "label7";
  296. this.label7.Size = new System.Drawing.Size(104, 38);
  297. this.label7.TabIndex = 44;
  298. this.label7.Text = "拼版数";
  299. //
  300. // Read
  301. //
  302. this.Read.Location = new System.Drawing.Point(988, 279);
  303. this.Read.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  304. this.Read.Name = "Read";
  305. this.Read.Size = new System.Drawing.Size(146, 35);
  306. this.Read.TabIndex = 47;
  307. //
  308. // label8
  309. //
  310. this.label8.AutoSize = true;
  311. this.label8.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  312. this.label8.Location = new System.Drawing.Point(905, 273);
  313. this.label8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  314. this.label8.Name = "label8";
  315. this.label8.Size = new System.Drawing.Size(75, 38);
  316. this.label8.TabIndex = 46;
  317. this.label8.Text = "读取";
  318. //
  319. // Write
  320. //
  321. this.Write.Location = new System.Drawing.Point(988, 331);
  322. this.Write.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  323. this.Write.Name = "Write";
  324. this.Write.Size = new System.Drawing.Size(146, 35);
  325. this.Write.TabIndex = 49;
  326. //
  327. // label9
  328. //
  329. this.label9.AutoSize = true;
  330. this.label9.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  331. this.label9.Location = new System.Drawing.Point(905, 328);
  332. this.label9.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  333. this.label9.Name = "label9";
  334. this.label9.Size = new System.Drawing.Size(75, 38);
  335. this.label9.TabIndex = 48;
  336. this.label9.Text = "回写";
  337. //
  338. // ToZero
  339. //
  340. this.ToZero.Location = new System.Drawing.Point(988, 387);
  341. this.ToZero.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  342. this.ToZero.Name = "ToZero";
  343. this.ToZero.Size = new System.Drawing.Size(146, 35);
  344. this.ToZero.TabIndex = 51;
  345. //
  346. // label10
  347. //
  348. this.label10.AutoSize = true;
  349. this.label10.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  350. this.label10.Location = new System.Drawing.Point(905, 384);
  351. this.label10.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  352. this.label10.Name = "label10";
  353. this.label10.Size = new System.Drawing.Size(75, 38);
  354. this.label10.TabIndex = 50;
  355. this.label10.Text = "清零";
  356. //
  357. // CleanData
  358. //
  359. this.CleanData.Enabled = false;
  360. this.CleanData.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  361. this.CleanData.Location = new System.Drawing.Point(595, 552);
  362. this.CleanData.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  363. this.CleanData.Name = "CleanData";
  364. this.CleanData.Size = new System.Drawing.Size(128, 56);
  365. this.CleanData.TabIndex = 52;
  366. this.CleanData.Text = "计数清零";
  367. this.CleanData.UseVisualStyleBackColor = true;
  368. this.CleanData.Click += new System.EventHandler(this.CleanData_Click);
  369. //
  370. // Setting
  371. //
  372. this.Setting.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  373. this.Setting.Location = new System.Drawing.Point(961, 83);
  374. this.Setting.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  375. this.Setting.Name = "Setting";
  376. this.Setting.Size = new System.Drawing.Size(128, 56);
  377. this.Setting.TabIndex = 53;
  378. this.Setting.Text = "设置参数";
  379. this.Setting.UseVisualStyleBackColor = true;
  380. this.Setting.Click += new System.EventHandler(this.Setting_Click);
  381. //
  382. // label11
  383. //
  384. this.label11.AutoSize = true;
  385. this.label11.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  386. this.label11.Location = new System.Drawing.Point(850, 484);
  387. this.label11.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  388. this.label11.Name = "label11";
  389. this.label11.Size = new System.Drawing.Size(133, 38);
  390. this.label11.TabIndex = 55;
  391. this.label11.Text = "计数方式";
  392. //
  393. // CountType
  394. //
  395. this.CountType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  396. this.CountType.FormattingEnabled = true;
  397. this.CountType.Items.AddRange(new object[] {
  398. "PLC",
  399. "计数器"});
  400. this.CountType.Location = new System.Drawing.Point(990, 490);
  401. this.CountType.Name = "CountType";
  402. this.CountType.Size = new System.Drawing.Size(137, 32);
  403. this.CountType.TabIndex = 54;
  404. //
  405. // ComPort
  406. //
  407. this.ComPort.Location = new System.Drawing.Point(988, 174);
  408. this.ComPort.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  409. this.ComPort.Name = "ComPort";
  410. this.ComPort.Size = new System.Drawing.Size(148, 40);
  411. this.ComPort.TabIndex = 40;
  412. //
  413. // ms_sncode
  414. //
  415. this.ms_sncode.AllPower = null;
  416. this.ms_sncode.BackColor = System.Drawing.Color.White;
  417. this.ms_sncode.ID = null;
  418. this.ms_sncode.Location = new System.Drawing.Point(221, 430);
  419. this.ms_sncode.Name = "ms_sncode";
  420. this.ms_sncode.Power = null;
  421. this.ms_sncode.Size = new System.Drawing.Size(333, 35);
  422. this.ms_sncode.Str = null;
  423. this.ms_sncode.Str1 = null;
  424. this.ms_sncode.Str2 = null;
  425. this.ms_sncode.TabIndex = 33;
  426. this.ms_sncode.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ms_sncode_KeyDown);
  427. //
  428. // ma_code
  429. //
  430. this.ma_code.AllPower = null;
  431. this.ma_code.Caller = null;
  432. this.ma_code.Condition = null;
  433. this.ma_code.DBTitle = null;
  434. this.ma_code.FormName = null;
  435. this.ma_code.Location = new System.Drawing.Point(221, 114);
  436. this.ma_code.Name = "ma_code";
  437. this.ma_code.Power = null;
  438. this.ma_code.ReturnData = null;
  439. this.ma_code.SelectField = null;
  440. this.ma_code.SetValueField = null;
  441. this.ma_code.Size = new System.Drawing.Size(436, 41);
  442. this.ma_code.TabIndex = 29;
  443. this.ma_code.TableName = null;
  444. this.ma_code.TextBoxEnable = false;
  445. //
  446. // li_code
  447. //
  448. this.li_code.AllPower = null;
  449. this.li_code.Caller = null;
  450. this.li_code.Condition = null;
  451. this.li_code.DBTitle = null;
  452. this.li_code.FormName = null;
  453. this.li_code.Location = new System.Drawing.Point(221, 191);
  454. this.li_code.Name = "li_code";
  455. this.li_code.Power = null;
  456. this.li_code.ReturnData = null;
  457. this.li_code.SelectField = null;
  458. this.li_code.SetValueField = null;
  459. this.li_code.Size = new System.Drawing.Size(436, 41);
  460. this.li_code.TabIndex = 28;
  461. this.li_code.TableName = null;
  462. this.li_code.TextBoxEnable = false;
  463. //
  464. // UseScan
  465. //
  466. this.UseScan.Location = new System.Drawing.Point(988, 438);
  467. this.UseScan.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  468. this.UseScan.Name = "UseScan";
  469. this.UseScan.Size = new System.Drawing.Size(146, 35);
  470. this.UseScan.TabIndex = 57;
  471. //
  472. // label12
  473. //
  474. this.label12.AutoSize = true;
  475. this.label12.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  476. this.label12.Location = new System.Drawing.Point(847, 435);
  477. this.label12.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  478. this.label12.Name = "label12";
  479. this.label12.Size = new System.Drawing.Size(133, 38);
  480. this.label12.TabIndex = 56;
  481. this.label12.Text = "启用扫描";
  482. //
  483. // AutoSMTRXY
  484. //
  485. this.AutoScaleDimensions = new System.Drawing.SizeF(12F, 24F);
  486. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  487. this.ClientSize = new System.Drawing.Size(1710, 640);
  488. this.Controls.Add(this.UseScan);
  489. this.Controls.Add(this.label12);
  490. this.Controls.Add(this.label11);
  491. this.Controls.Add(this.CountType);
  492. this.Controls.Add(this.Setting);
  493. this.Controls.Add(this.CleanData);
  494. this.Controls.Add(this.ToZero);
  495. this.Controls.Add(this.label10);
  496. this.Controls.Add(this.Write);
  497. this.Controls.Add(this.label9);
  498. this.Controls.Add(this.Read);
  499. this.Controls.Add(this.label8);
  500. this.Controls.Add(this.pr_pcbacount);
  501. this.Controls.Add(this.label7);
  502. this.Controls.Add(this.BaudRate);
  503. this.Controls.Add(this.label3);
  504. this.Controls.Add(this.label6);
  505. this.Controls.Add(this.ComPort);
  506. this.Controls.Add(this.StopWatch);
  507. this.Controls.Add(this.StartWatch);
  508. this.Controls.Add(this.SN);
  509. this.Controls.Add(this.Counter);
  510. this.Controls.Add(this.RemindVoice);
  511. this.Controls.Add(this.label2);
  512. this.Controls.Add(this.ms_sncode);
  513. this.Controls.Add(this.ma_code);
  514. this.Controls.Add(this.li_code);
  515. this.Controls.Add(this.label5);
  516. this.Controls.Add(this.NowQTY);
  517. this.Controls.Add(this.label4);
  518. this.Controls.Add(this.AutoStart);
  519. this.Controls.Add(this.label1);
  520. this.Controls.Add(this.Type);
  521. this.Controls.Add(this.MakeCode_lable);
  522. this.Controls.Add(this.Clean);
  523. this.Controls.Add(this.OperateResult);
  524. this.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  525. this.MaximizeBox = false;
  526. this.Name = "AutoSMTRXY";
  527. this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
  528. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  529. this.Text = "过站数据统计2026-08-19";
  530. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
  531. this.Load += new System.EventHandler(this.Form1_Load);
  532. ((System.ComponentModel.ISupportInitialize)(this.pr_pcbacount)).EndInit();
  533. this.ResumeLayout(false);
  534. this.PerformLayout();
  535. }
  536. #endregion
  537. private System.Windows.Forms.RichTextBox OperateResult;
  538. private System.Windows.Forms.Button Clean;
  539. private System.Windows.Forms.Label MakeCode_lable;
  540. private System.Windows.Forms.ComboBox Type;
  541. private System.Windows.Forms.Label label1;
  542. private System.Windows.Forms.CheckBox AutoStart;
  543. private System.Windows.Forms.TextBox NowQTY;
  544. private System.Windows.Forms.Label label4;
  545. private SearchTextBox li_code;
  546. private System.Windows.Forms.Label label5;
  547. private SearchTextBox ma_code;
  548. private EnterTextBox ms_sncode;
  549. private System.Windows.Forms.Label label2;
  550. private System.Windows.Forms.Timer RemindTimer;
  551. private System.Windows.Forms.CheckBox RemindVoice;
  552. private System.Windows.Forms.RadioButton SN;
  553. private System.Windows.Forms.RadioButton Counter;
  554. private System.Windows.Forms.Button StopWatch;
  555. private System.Windows.Forms.Button StartWatch;
  556. private System.Windows.Forms.TextBox BaudRate;
  557. private System.Windows.Forms.Label label3;
  558. private System.Windows.Forms.Label label6;
  559. private SerialPortCombox ComPort;
  560. private System.Windows.Forms.Timer Timer;
  561. private System.Windows.Forms.NumericUpDown pr_pcbacount;
  562. private System.Windows.Forms.Label label7;
  563. private System.Windows.Forms.TextBox Read;
  564. private System.Windows.Forms.Label label8;
  565. private System.Windows.Forms.TextBox Write;
  566. private System.Windows.Forms.Label label9;
  567. private System.Windows.Forms.TextBox ToZero;
  568. private System.Windows.Forms.Label label10;
  569. private System.Windows.Forms.Button CleanData;
  570. private System.Windows.Forms.Button Setting;
  571. private System.Windows.Forms.Label label11;
  572. private System.Windows.Forms.ComboBox CountType;
  573. private System.Windows.Forms.TextBox UseScan;
  574. private System.Windows.Forms.Label label12;
  575. }
  576. }