Form1.Designer.cs 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406
  1. namespace PLCConnector
  2. {
  3. partial class Form1
  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.label1 = new System.Windows.Forms.Label();
  29. this.label2 = new System.Windows.Forms.Label();
  30. this.textBox2 = new System.Windows.Forms.TextBox();
  31. this.groupBox1 = new System.Windows.Forms.GroupBox();
  32. this.textBox4 = new System.Windows.Forms.TextBox();
  33. this.button1 = new System.Windows.Forms.Button();
  34. this.label3 = new System.Windows.Forms.Label();
  35. this.textBox3 = new System.Windows.Forms.TextBox();
  36. this.groupBox2 = new System.Windows.Forms.GroupBox();
  37. this.textBox5 = new System.Windows.Forms.TextBox();
  38. this.button2 = new System.Windows.Forms.Button();
  39. this.textBox1 = new System.Windows.Forms.TextBox();
  40. this.label4 = new System.Windows.Forms.Label();
  41. this.groupBox3 = new System.Windows.Forms.GroupBox();
  42. this.textBox6 = new System.Windows.Forms.TextBox();
  43. this.button3 = new System.Windows.Forms.Button();
  44. this.textBox7 = new System.Windows.Forms.TextBox();
  45. this.label5 = new System.Windows.Forms.Label();
  46. this.groupBox4 = new System.Windows.Forms.GroupBox();
  47. this.textBox8 = new System.Windows.Forms.TextBox();
  48. this.button4 = new System.Windows.Forms.Button();
  49. this.textBox9 = new System.Windows.Forms.TextBox();
  50. this.label6 = new System.Windows.Forms.Label();
  51. this.btn_clear = new System.Windows.Forms.Button();
  52. this.button6 = new System.Windows.Forms.Button();
  53. this.button5 = new System.Windows.Forms.Button();
  54. this.button7 = new System.Windows.Forms.Button();
  55. this.button8 = new System.Windows.Forms.Button();
  56. this.button9 = new System.Windows.Forms.Button();
  57. this.groupBox1.SuspendLayout();
  58. this.groupBox2.SuspendLayout();
  59. this.groupBox3.SuspendLayout();
  60. this.groupBox4.SuspendLayout();
  61. this.SuspendLayout();
  62. //
  63. // label1
  64. //
  65. this.label1.AutoSize = true;
  66. this.label1.Location = new System.Drawing.Point(6, 25);
  67. this.label1.Name = "label1";
  68. this.label1.Size = new System.Drawing.Size(41, 12);
  69. this.label1.TabIndex = 1;
  70. this.label1.Text = "数据块";
  71. //
  72. // label2
  73. //
  74. this.label2.AutoSize = true;
  75. this.label2.Location = new System.Drawing.Point(6, 88);
  76. this.label2.Name = "label2";
  77. this.label2.Size = new System.Drawing.Size(41, 12);
  78. this.label2.TabIndex = 3;
  79. this.label2.Text = "偏移量";
  80. //
  81. // textBox2
  82. //
  83. this.textBox2.Location = new System.Drawing.Point(6, 103);
  84. this.textBox2.Name = "textBox2";
  85. this.textBox2.Size = new System.Drawing.Size(121, 21);
  86. this.textBox2.TabIndex = 2;
  87. //
  88. // groupBox1
  89. //
  90. this.groupBox1.Controls.Add(this.textBox4);
  91. this.groupBox1.Controls.Add(this.button1);
  92. this.groupBox1.Controls.Add(this.label3);
  93. this.groupBox1.Controls.Add(this.label2);
  94. this.groupBox1.Controls.Add(this.textBox3);
  95. this.groupBox1.Controls.Add(this.label1);
  96. this.groupBox1.Controls.Add(this.textBox2);
  97. this.groupBox1.Location = new System.Drawing.Point(12, 12);
  98. this.groupBox1.Name = "groupBox1";
  99. this.groupBox1.Size = new System.Drawing.Size(155, 250);
  100. this.groupBox1.TabIndex = 4;
  101. this.groupBox1.TabStop = false;
  102. this.groupBox1.Text = "写入";
  103. //
  104. // textBox4
  105. //
  106. this.textBox4.Location = new System.Drawing.Point(8, 40);
  107. this.textBox4.Name = "textBox4";
  108. this.textBox4.Size = new System.Drawing.Size(121, 21);
  109. this.textBox4.TabIndex = 7;
  110. //
  111. // button1
  112. //
  113. this.button1.Location = new System.Drawing.Point(23, 209);
  114. this.button1.Name = "button1";
  115. this.button1.Size = new System.Drawing.Size(75, 23);
  116. this.button1.TabIndex = 6;
  117. this.button1.Text = "写入";
  118. this.button1.UseVisualStyleBackColor = true;
  119. this.button1.Click += new System.EventHandler(this.button1_Click);
  120. //
  121. // label3
  122. //
  123. this.label3.AutoSize = true;
  124. this.label3.Location = new System.Drawing.Point(6, 158);
  125. this.label3.Name = "label3";
  126. this.label3.Size = new System.Drawing.Size(17, 12);
  127. this.label3.TabIndex = 5;
  128. this.label3.Text = "值";
  129. //
  130. // textBox3
  131. //
  132. this.textBox3.Location = new System.Drawing.Point(6, 173);
  133. this.textBox3.Name = "textBox3";
  134. this.textBox3.Size = new System.Drawing.Size(121, 21);
  135. this.textBox3.TabIndex = 3;
  136. //
  137. // groupBox2
  138. //
  139. this.groupBox2.Controls.Add(this.textBox5);
  140. this.groupBox2.Controls.Add(this.button2);
  141. this.groupBox2.Controls.Add(this.textBox1);
  142. this.groupBox2.Controls.Add(this.label4);
  143. this.groupBox2.Location = new System.Drawing.Point(199, 12);
  144. this.groupBox2.Name = "groupBox2";
  145. this.groupBox2.Size = new System.Drawing.Size(171, 418);
  146. this.groupBox2.TabIndex = 5;
  147. this.groupBox2.TabStop = false;
  148. this.groupBox2.Text = "读取";
  149. //
  150. // textBox5
  151. //
  152. this.textBox5.Location = new System.Drawing.Point(18, 40);
  153. this.textBox5.Name = "textBox5";
  154. this.textBox5.Size = new System.Drawing.Size(121, 21);
  155. this.textBox5.TabIndex = 8;
  156. //
  157. // button2
  158. //
  159. this.button2.Location = new System.Drawing.Point(46, 389);
  160. this.button2.Name = "button2";
  161. this.button2.Size = new System.Drawing.Size(75, 23);
  162. this.button2.TabIndex = 7;
  163. this.button2.Text = "读取";
  164. this.button2.UseVisualStyleBackColor = true;
  165. this.button2.Click += new System.EventHandler(this.button2_Click);
  166. //
  167. // textBox1
  168. //
  169. this.textBox1.Location = new System.Drawing.Point(18, 78);
  170. this.textBox1.Multiline = true;
  171. this.textBox1.Name = "textBox1";
  172. this.textBox1.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
  173. this.textBox1.Size = new System.Drawing.Size(133, 305);
  174. this.textBox1.TabIndex = 8;
  175. //
  176. // label4
  177. //
  178. this.label4.AutoSize = true;
  179. this.label4.Location = new System.Drawing.Point(18, 25);
  180. this.label4.Name = "label4";
  181. this.label4.Size = new System.Drawing.Size(41, 12);
  182. this.label4.TabIndex = 6;
  183. this.label4.Text = "数据块";
  184. //
  185. // groupBox3
  186. //
  187. this.groupBox3.Controls.Add(this.textBox6);
  188. this.groupBox3.Controls.Add(this.button3);
  189. this.groupBox3.Controls.Add(this.textBox7);
  190. this.groupBox3.Controls.Add(this.label5);
  191. this.groupBox3.Location = new System.Drawing.Point(397, 12);
  192. this.groupBox3.Name = "groupBox3";
  193. this.groupBox3.Size = new System.Drawing.Size(171, 418);
  194. this.groupBox3.TabIndex = 6;
  195. this.groupBox3.TabStop = false;
  196. this.groupBox3.Text = "读取";
  197. //
  198. // textBox6
  199. //
  200. this.textBox6.Location = new System.Drawing.Point(18, 40);
  201. this.textBox6.Name = "textBox6";
  202. this.textBox6.Size = new System.Drawing.Size(121, 21);
  203. this.textBox6.TabIndex = 8;
  204. //
  205. // button3
  206. //
  207. this.button3.Location = new System.Drawing.Point(46, 389);
  208. this.button3.Name = "button3";
  209. this.button3.Size = new System.Drawing.Size(75, 23);
  210. this.button3.TabIndex = 7;
  211. this.button3.Text = "读取";
  212. this.button3.UseVisualStyleBackColor = true;
  213. this.button3.Click += new System.EventHandler(this.button3_Click);
  214. //
  215. // textBox7
  216. //
  217. this.textBox7.Location = new System.Drawing.Point(18, 78);
  218. this.textBox7.Multiline = true;
  219. this.textBox7.Name = "textBox7";
  220. this.textBox7.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
  221. this.textBox7.Size = new System.Drawing.Size(133, 305);
  222. this.textBox7.TabIndex = 8;
  223. //
  224. // label5
  225. //
  226. this.label5.AutoSize = true;
  227. this.label5.Location = new System.Drawing.Point(18, 25);
  228. this.label5.Name = "label5";
  229. this.label5.Size = new System.Drawing.Size(41, 12);
  230. this.label5.TabIndex = 6;
  231. this.label5.Text = "数据块";
  232. //
  233. // groupBox4
  234. //
  235. this.groupBox4.Controls.Add(this.textBox8);
  236. this.groupBox4.Controls.Add(this.button4);
  237. this.groupBox4.Controls.Add(this.textBox9);
  238. this.groupBox4.Controls.Add(this.label6);
  239. this.groupBox4.Location = new System.Drawing.Point(587, 12);
  240. this.groupBox4.Name = "groupBox4";
  241. this.groupBox4.Size = new System.Drawing.Size(171, 418);
  242. this.groupBox4.TabIndex = 9;
  243. this.groupBox4.TabStop = false;
  244. this.groupBox4.Text = "读取";
  245. //
  246. // textBox8
  247. //
  248. this.textBox8.Location = new System.Drawing.Point(18, 40);
  249. this.textBox8.Name = "textBox8";
  250. this.textBox8.Size = new System.Drawing.Size(121, 21);
  251. this.textBox8.TabIndex = 8;
  252. //
  253. // button4
  254. //
  255. this.button4.Location = new System.Drawing.Point(46, 389);
  256. this.button4.Name = "button4";
  257. this.button4.Size = new System.Drawing.Size(75, 23);
  258. this.button4.TabIndex = 7;
  259. this.button4.Text = "读取";
  260. this.button4.UseVisualStyleBackColor = true;
  261. this.button4.Click += new System.EventHandler(this.button4_Click);
  262. //
  263. // textBox9
  264. //
  265. this.textBox9.Location = new System.Drawing.Point(18, 78);
  266. this.textBox9.Multiline = true;
  267. this.textBox9.Name = "textBox9";
  268. this.textBox9.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
  269. this.textBox9.Size = new System.Drawing.Size(133, 305);
  270. this.textBox9.TabIndex = 8;
  271. //
  272. // label6
  273. //
  274. this.label6.AutoSize = true;
  275. this.label6.Location = new System.Drawing.Point(18, 25);
  276. this.label6.Name = "label6";
  277. this.label6.Size = new System.Drawing.Size(41, 12);
  278. this.label6.TabIndex = 6;
  279. this.label6.Text = "数据块";
  280. //
  281. // btn_clear
  282. //
  283. this.btn_clear.Location = new System.Drawing.Point(35, 297);
  284. this.btn_clear.Name = "btn_clear";
  285. this.btn_clear.Size = new System.Drawing.Size(75, 23);
  286. this.btn_clear.TabIndex = 10;
  287. this.btn_clear.Text = "终端1清零";
  288. this.btn_clear.UseVisualStyleBackColor = true;
  289. this.btn_clear.Click += new System.EventHandler(this.btn_clear_Click);
  290. //
  291. // button6
  292. //
  293. this.button6.Location = new System.Drawing.Point(35, 268);
  294. this.button6.Name = "button6";
  295. this.button6.Size = new System.Drawing.Size(75, 23);
  296. this.button6.TabIndex = 11;
  297. this.button6.Text = "自动刷新";
  298. this.button6.UseVisualStyleBackColor = true;
  299. this.button6.Click += new System.EventHandler(this.btn_refresh_Click);
  300. //
  301. // button5
  302. //
  303. this.button5.Location = new System.Drawing.Point(35, 326);
  304. this.button5.Name = "button5";
  305. this.button5.Size = new System.Drawing.Size(93, 23);
  306. this.button5.TabIndex = 12;
  307. this.button5.Text = "凭证写入车位";
  308. this.button5.UseVisualStyleBackColor = true;
  309. this.button5.Click += new System.EventHandler(this.button5_Click);
  310. //
  311. // button7
  312. //
  313. this.button7.Location = new System.Drawing.Point(35, 353);
  314. this.button7.Name = "button7";
  315. this.button7.Size = new System.Drawing.Size(75, 23);
  316. this.button7.TabIndex = 13;
  317. this.button7.Text = "启动地感";
  318. this.button7.UseVisualStyleBackColor = true;
  319. this.button7.Click += new System.EventHandler(this.button7_Click);
  320. //
  321. // button8
  322. //
  323. this.button8.Location = new System.Drawing.Point(35, 382);
  324. this.button8.Name = "button8";
  325. this.button8.Size = new System.Drawing.Size(75, 23);
  326. this.button8.TabIndex = 14;
  327. this.button8.Text = "启动号牌机";
  328. this.button8.UseVisualStyleBackColor = true;
  329. this.button8.Click += new System.EventHandler(this.button8_Click);
  330. //
  331. // button9
  332. //
  333. this.button9.Location = new System.Drawing.Point(35, 411);
  334. this.button9.Name = "button9";
  335. this.button9.Size = new System.Drawing.Size(75, 23);
  336. this.button9.TabIndex = 15;
  337. this.button9.Text = "停车完成";
  338. this.button9.UseVisualStyleBackColor = true;
  339. this.button9.Click += new System.EventHandler(this.button9_Click);
  340. //
  341. // Form1
  342. //
  343. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  344. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  345. this.ClientSize = new System.Drawing.Size(791, 474);
  346. this.Controls.Add(this.button9);
  347. this.Controls.Add(this.button8);
  348. this.Controls.Add(this.button7);
  349. this.Controls.Add(this.button5);
  350. this.Controls.Add(this.button6);
  351. this.Controls.Add(this.btn_clear);
  352. this.Controls.Add(this.groupBox4);
  353. this.Controls.Add(this.groupBox3);
  354. this.Controls.Add(this.groupBox2);
  355. this.Controls.Add(this.groupBox1);
  356. this.Name = "Form1";
  357. this.Text = "Form1";
  358. this.groupBox1.ResumeLayout(false);
  359. this.groupBox1.PerformLayout();
  360. this.groupBox2.ResumeLayout(false);
  361. this.groupBox2.PerformLayout();
  362. this.groupBox3.ResumeLayout(false);
  363. this.groupBox3.PerformLayout();
  364. this.groupBox4.ResumeLayout(false);
  365. this.groupBox4.PerformLayout();
  366. this.ResumeLayout(false);
  367. }
  368. #endregion
  369. private System.Windows.Forms.Label label1;
  370. private System.Windows.Forms.Label label2;
  371. private System.Windows.Forms.TextBox textBox2;
  372. private System.Windows.Forms.GroupBox groupBox1;
  373. private System.Windows.Forms.Button button1;
  374. private System.Windows.Forms.Label label3;
  375. private System.Windows.Forms.TextBox textBox3;
  376. private System.Windows.Forms.GroupBox groupBox2;
  377. private System.Windows.Forms.TextBox textBox1;
  378. private System.Windows.Forms.Label label4;
  379. private System.Windows.Forms.Button button2;
  380. private System.Windows.Forms.TextBox textBox4;
  381. private System.Windows.Forms.TextBox textBox5;
  382. private System.Windows.Forms.GroupBox groupBox3;
  383. private System.Windows.Forms.TextBox textBox6;
  384. private System.Windows.Forms.Button button3;
  385. private System.Windows.Forms.TextBox textBox7;
  386. private System.Windows.Forms.Label label5;
  387. private System.Windows.Forms.GroupBox groupBox4;
  388. private System.Windows.Forms.TextBox textBox8;
  389. private System.Windows.Forms.Button button4;
  390. private System.Windows.Forms.TextBox textBox9;
  391. private System.Windows.Forms.Label label6;
  392. private System.Windows.Forms.Button btn_clear;
  393. private System.Windows.Forms.Button button6;
  394. private System.Windows.Forms.Button button5;
  395. private System.Windows.Forms.Button button7;
  396. private System.Windows.Forms.Button button8;
  397. private System.Windows.Forms.Button button9;
  398. }
  399. }