AGVMonitor.Designer.cs 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. namespace AGV_WPF
  2. {
  3. partial class AGVMonitor
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, 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 Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. this.comboBox1 = new System.Windows.Forms.ComboBox();
  30. this.label1 = new System.Windows.Forms.Label();
  31. this.label2 = new System.Windows.Forms.Label();
  32. this.comboBox2 = new System.Windows.Forms.ComboBox();
  33. this.label3 = new System.Windows.Forms.Label();
  34. this.comboBox3 = new System.Windows.Forms.ComboBox();
  35. this.label4 = new System.Windows.Forms.Label();
  36. this.comboBox4 = new System.Windows.Forms.ComboBox();
  37. this.button1 = new System.Windows.Forms.Button();
  38. this.checkBox1 = new System.Windows.Forms.CheckBox();
  39. this.timer1 = new System.Windows.Forms.Timer(this.components);
  40. this.label5 = new System.Windows.Forms.Label();
  41. this.textBox1 = new System.Windows.Forms.TextBox();
  42. this.SuspendLayout();
  43. //
  44. // comboBox1
  45. //
  46. this.comboBox1.FormattingEnabled = true;
  47. this.comboBox1.Location = new System.Drawing.Point(65, 28);
  48. this.comboBox1.Name = "comboBox1";
  49. this.comboBox1.Size = new System.Drawing.Size(76, 20);
  50. this.comboBox1.TabIndex = 0;
  51. this.comboBox1.Text = "1";
  52. //
  53. // label1
  54. //
  55. this.label1.AutoSize = true;
  56. this.label1.Location = new System.Drawing.Point(30, 31);
  57. this.label1.Name = "label1";
  58. this.label1.Size = new System.Drawing.Size(29, 12);
  59. this.label1.TabIndex = 1;
  60. this.label1.Text = "车号";
  61. //
  62. // label2
  63. //
  64. this.label2.AutoSize = true;
  65. this.label2.Location = new System.Drawing.Point(161, 31);
  66. this.label2.Name = "label2";
  67. this.label2.Size = new System.Drawing.Size(29, 12);
  68. this.label2.TabIndex = 3;
  69. this.label2.Text = "状态";
  70. //
  71. // comboBox2
  72. //
  73. this.comboBox2.FormattingEnabled = true;
  74. this.comboBox2.Items.AddRange(new object[] {
  75. "64",
  76. "65",
  77. "66",
  78. "67",
  79. "68",
  80. "69",
  81. "71"});
  82. this.comboBox2.Location = new System.Drawing.Point(196, 28);
  83. this.comboBox2.Name = "comboBox2";
  84. this.comboBox2.Size = new System.Drawing.Size(76, 20);
  85. this.comboBox2.TabIndex = 2;
  86. this.comboBox2.Text = "65";
  87. //
  88. // label3
  89. //
  90. this.label3.AutoSize = true;
  91. this.label3.Location = new System.Drawing.Point(287, 31);
  92. this.label3.Name = "label3";
  93. this.label3.Size = new System.Drawing.Size(29, 12);
  94. this.label3.TabIndex = 5;
  95. this.label3.Text = "路线";
  96. //
  97. // comboBox3
  98. //
  99. this.comboBox3.FormattingEnabled = true;
  100. this.comboBox3.Items.AddRange(new object[] {
  101. "1",
  102. "2",
  103. "3"});
  104. this.comboBox3.Location = new System.Drawing.Point(322, 28);
  105. this.comboBox3.Name = "comboBox3";
  106. this.comboBox3.Size = new System.Drawing.Size(76, 20);
  107. this.comboBox3.TabIndex = 4;
  108. this.comboBox3.Text = "1";
  109. //
  110. // label4
  111. //
  112. this.label4.AutoSize = true;
  113. this.label4.Location = new System.Drawing.Point(417, 31);
  114. this.label4.Name = "label4";
  115. this.label4.Size = new System.Drawing.Size(29, 12);
  116. this.label4.TabIndex = 7;
  117. this.label4.Text = "异常";
  118. //
  119. // comboBox4
  120. //
  121. this.comboBox4.FormattingEnabled = true;
  122. this.comboBox4.Items.AddRange(new object[] {
  123. "0",
  124. "1",
  125. "2",
  126. "3",
  127. "4",
  128. "5",
  129. "6",
  130. "7",
  131. "8",
  132. "9",
  133. "10"});
  134. this.comboBox4.Location = new System.Drawing.Point(452, 28);
  135. this.comboBox4.Name = "comboBox4";
  136. this.comboBox4.Size = new System.Drawing.Size(76, 20);
  137. this.comboBox4.TabIndex = 6;
  138. this.comboBox4.Text = "0";
  139. //
  140. // button1
  141. //
  142. this.button1.Location = new System.Drawing.Point(726, 25);
  143. this.button1.Name = "button1";
  144. this.button1.Size = new System.Drawing.Size(75, 23);
  145. this.button1.TabIndex = 8;
  146. this.button1.Text = "确定";
  147. this.button1.UseVisualStyleBackColor = true;
  148. this.button1.Click += new System.EventHandler(this.button1_Click);
  149. //
  150. // checkBox1
  151. //
  152. this.checkBox1.AutoSize = true;
  153. this.checkBox1.Checked = true;
  154. this.checkBox1.CheckState = System.Windows.Forms.CheckState.Checked;
  155. this.checkBox1.Location = new System.Drawing.Point(672, 28);
  156. this.checkBox1.Name = "checkBox1";
  157. this.checkBox1.Size = new System.Drawing.Size(48, 16);
  158. this.checkBox1.TabIndex = 9;
  159. this.checkBox1.Text = "在线";
  160. this.checkBox1.UseVisualStyleBackColor = true;
  161. //
  162. // timer1
  163. //
  164. this.timer1.Enabled = true;
  165. this.timer1.Interval = 500;
  166. this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
  167. //
  168. // label5
  169. //
  170. this.label5.AutoSize = true;
  171. this.label5.Location = new System.Drawing.Point(542, 32);
  172. this.label5.Name = "label5";
  173. this.label5.Size = new System.Drawing.Size(29, 12);
  174. this.label5.TabIndex = 11;
  175. this.label5.Text = "地标";
  176. //
  177. // textBox1
  178. //
  179. this.textBox1.Location = new System.Drawing.Point(577, 27);
  180. this.textBox1.Name = "textBox1";
  181. this.textBox1.Size = new System.Drawing.Size(68, 21);
  182. this.textBox1.TabIndex = 12;
  183. this.textBox1.Text = "0";
  184. //
  185. // AGVMonitor
  186. //
  187. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  188. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  189. this.ClientSize = new System.Drawing.Size(837, 82);
  190. this.Controls.Add(this.textBox1);
  191. this.Controls.Add(this.label5);
  192. this.Controls.Add(this.checkBox1);
  193. this.Controls.Add(this.button1);
  194. this.Controls.Add(this.label4);
  195. this.Controls.Add(this.comboBox4);
  196. this.Controls.Add(this.label3);
  197. this.Controls.Add(this.comboBox3);
  198. this.Controls.Add(this.label2);
  199. this.Controls.Add(this.comboBox2);
  200. this.Controls.Add(this.label1);
  201. this.Controls.Add(this.comboBox1);
  202. this.Name = "AGVMonitor";
  203. this.Text = "AGVMonitor";
  204. this.Load += new System.EventHandler(this.AGVMonitor_Load);
  205. this.ResumeLayout(false);
  206. this.PerformLayout();
  207. }
  208. #endregion
  209. private System.Windows.Forms.ComboBox comboBox1;
  210. private System.Windows.Forms.Label label1;
  211. private System.Windows.Forms.Label label2;
  212. private System.Windows.Forms.ComboBox comboBox2;
  213. private System.Windows.Forms.Label label3;
  214. private System.Windows.Forms.ComboBox comboBox3;
  215. private System.Windows.Forms.Label label4;
  216. private System.Windows.Forms.ComboBox comboBox4;
  217. private System.Windows.Forms.Button button1;
  218. private System.Windows.Forms.CheckBox checkBox1;
  219. private System.Windows.Forms.Timer timer1;
  220. private System.Windows.Forms.Label label5;
  221. private System.Windows.Forms.TextBox textBox1;
  222. }
  223. }