RuleCfg_Form.designer.cs 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315
  1. namespace VzClientSDKDemo
  2. {
  3. partial class RuleCfg_Form
  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.picBoxVideo = new System.Windows.Forms.PictureBox();
  29. this.btnAddRule = new System.Windows.Forms.Button();
  30. this.label1 = new System.Windows.Forms.Label();
  31. this.txtRuleName = new System.Windows.Forms.TextBox();
  32. this.txtMinWidth = new System.Windows.Forms.TextBox();
  33. this.label2 = new System.Windows.Forms.Label();
  34. this.label3 = new System.Windows.Forms.Label();
  35. this.chkEnable = new System.Windows.Forms.CheckBox();
  36. this.chkDraw = new System.Windows.Forms.CheckBox();
  37. this.label4 = new System.Windows.Forms.Label();
  38. this.txtMaxWidth = new System.Windows.Forms.TextBox();
  39. this.label5 = new System.Windows.Forms.Label();
  40. this.label6 = new System.Windows.Forms.Label();
  41. this.label7 = new System.Windows.Forms.Label();
  42. this.txtTimes = new System.Windows.Forms.TextBox();
  43. this.label8 = new System.Windows.Forms.Label();
  44. this.label9 = new System.Windows.Forms.Label();
  45. this.cmbDir = new System.Windows.Forms.ComboBox();
  46. this.btnSave = new System.Windows.Forms.Button();
  47. this.btnDeleRule = new System.Windows.Forms.Button();
  48. this.btnROI = new System.Windows.Forms.Button();
  49. ((System.ComponentModel.ISupportInitialize)(this.picBoxVideo)).BeginInit();
  50. this.SuspendLayout();
  51. //
  52. // picBoxVideo
  53. //
  54. this.picBoxVideo.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  55. this.picBoxVideo.Location = new System.Drawing.Point(12, 38);
  56. this.picBoxVideo.Name = "picBoxVideo";
  57. this.picBoxVideo.Size = new System.Drawing.Size(793, 515);
  58. this.picBoxVideo.TabIndex = 1;
  59. this.picBoxVideo.TabStop = false;
  60. this.picBoxVideo.MouseMove += new System.Windows.Forms.MouseEventHandler(this.picBoxVideo_MouseMove);
  61. this.picBoxVideo.MouseDown += new System.Windows.Forms.MouseEventHandler(this.picBoxVideo_MouseDown);
  62. this.picBoxVideo.MouseUp += new System.Windows.Forms.MouseEventHandler(this.picBoxVideo_MouseUp);
  63. //
  64. // btnAddRule
  65. //
  66. this.btnAddRule.Location = new System.Drawing.Point(12, 9);
  67. this.btnAddRule.Name = "btnAddRule";
  68. this.btnAddRule.Size = new System.Drawing.Size(75, 23);
  69. this.btnAddRule.TabIndex = 2;
  70. this.btnAddRule.Text = "添加线圈";
  71. this.btnAddRule.UseVisualStyleBackColor = true;
  72. this.btnAddRule.Click += new System.EventHandler(this.btnAddRule_Click);
  73. //
  74. // label1
  75. //
  76. this.label1.AutoSize = true;
  77. this.label1.Location = new System.Drawing.Point(817, 49);
  78. this.label1.Name = "label1";
  79. this.label1.Size = new System.Drawing.Size(53, 12);
  80. this.label1.TabIndex = 3;
  81. this.label1.Text = "规则名称";
  82. //
  83. // txtRuleName
  84. //
  85. this.txtRuleName.Enabled = false;
  86. this.txtRuleName.Location = new System.Drawing.Point(881, 45);
  87. this.txtRuleName.Name = "txtRuleName";
  88. this.txtRuleName.Size = new System.Drawing.Size(120, 21);
  89. this.txtRuleName.TabIndex = 4;
  90. //
  91. // txtMinWidth
  92. //
  93. this.txtMinWidth.Location = new System.Drawing.Point(900, 136);
  94. this.txtMinWidth.Name = "txtMinWidth";
  95. this.txtMinWidth.Size = new System.Drawing.Size(35, 21);
  96. this.txtMinWidth.TabIndex = 6;
  97. //
  98. // label2
  99. //
  100. this.label2.AutoSize = true;
  101. this.label2.Location = new System.Drawing.Point(817, 142);
  102. this.label2.Name = "label2";
  103. this.label2.Size = new System.Drawing.Size(77, 12);
  104. this.label2.TabIndex = 5;
  105. this.label2.Text = "车牌宽度限制";
  106. //
  107. // label3
  108. //
  109. this.label3.AutoSize = true;
  110. this.label3.Enabled = false;
  111. this.label3.Location = new System.Drawing.Point(817, 83);
  112. this.label3.Name = "label3";
  113. this.label3.Size = new System.Drawing.Size(59, 12);
  114. this.label3.TabIndex = 7;
  115. this.label3.Text = "是否检测 ";
  116. //
  117. // chkEnable
  118. //
  119. this.chkEnable.AutoSize = true;
  120. this.chkEnable.Enabled = false;
  121. this.chkEnable.Location = new System.Drawing.Point(881, 82);
  122. this.chkEnable.Name = "chkEnable";
  123. this.chkEnable.Size = new System.Drawing.Size(36, 16);
  124. this.chkEnable.TabIndex = 8;
  125. this.chkEnable.Text = "是";
  126. this.chkEnable.UseVisualStyleBackColor = true;
  127. //
  128. // chkDraw
  129. //
  130. this.chkDraw.AutoSize = true;
  131. this.chkDraw.Enabled = false;
  132. this.chkDraw.Location = new System.Drawing.Point(881, 110);
  133. this.chkDraw.Name = "chkDraw";
  134. this.chkDraw.Size = new System.Drawing.Size(36, 16);
  135. this.chkDraw.TabIndex = 10;
  136. this.chkDraw.Text = "是";
  137. this.chkDraw.UseVisualStyleBackColor = true;
  138. //
  139. // label4
  140. //
  141. this.label4.AutoSize = true;
  142. this.label4.Enabled = false;
  143. this.label4.Location = new System.Drawing.Point(817, 111);
  144. this.label4.Name = "label4";
  145. this.label4.Size = new System.Drawing.Size(53, 12);
  146. this.label4.TabIndex = 9;
  147. this.label4.Text = "是否绘制";
  148. //
  149. // txtMaxWidth
  150. //
  151. this.txtMaxWidth.Location = new System.Drawing.Point(958, 136);
  152. this.txtMaxWidth.Name = "txtMaxWidth";
  153. this.txtMaxWidth.Size = new System.Drawing.Size(35, 21);
  154. this.txtMaxWidth.TabIndex = 11;
  155. //
  156. // label5
  157. //
  158. this.label5.AutoSize = true;
  159. this.label5.Location = new System.Drawing.Point(941, 140);
  160. this.label5.Name = "label5";
  161. this.label5.Size = new System.Drawing.Size(11, 12);
  162. this.label5.TabIndex = 12;
  163. this.label5.Text = "-";
  164. //
  165. // label6
  166. //
  167. this.label6.AutoSize = true;
  168. this.label6.Location = new System.Drawing.Point(1003, 140);
  169. this.label6.Name = "label6";
  170. this.label6.Size = new System.Drawing.Size(53, 12);
  171. this.label6.TabIndex = 13;
  172. this.label6.Text = "(45-600)";
  173. //
  174. // label7
  175. //
  176. this.label7.AutoSize = true;
  177. this.label7.Location = new System.Drawing.Point(817, 173);
  178. this.label7.Name = "label7";
  179. this.label7.Size = new System.Drawing.Size(125, 12);
  180. this.label7.TabIndex = 14;
  181. this.label7.Text = "相同车牌触发间隔时间";
  182. //
  183. // txtTimes
  184. //
  185. this.txtTimes.Location = new System.Drawing.Point(948, 168);
  186. this.txtTimes.Name = "txtTimes";
  187. this.txtTimes.Size = new System.Drawing.Size(35, 21);
  188. this.txtTimes.TabIndex = 15;
  189. //
  190. // label8
  191. //
  192. this.label8.AutoSize = true;
  193. this.label8.Location = new System.Drawing.Point(993, 173);
  194. this.label8.Name = "label8";
  195. this.label8.Size = new System.Drawing.Size(65, 12);
  196. this.label8.TabIndex = 16;
  197. this.label8.Text = "秒 (0-255)";
  198. //
  199. // label9
  200. //
  201. this.label9.AutoSize = true;
  202. this.label9.Location = new System.Drawing.Point(817, 207);
  203. this.label9.Name = "label9";
  204. this.label9.Size = new System.Drawing.Size(77, 12);
  205. this.label9.TabIndex = 17;
  206. this.label9.Text = "车辆通过方向";
  207. //
  208. // cmbDir
  209. //
  210. this.cmbDir.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  211. this.cmbDir.FormattingEnabled = true;
  212. this.cmbDir.Items.AddRange(new object[] {
  213. "双向",
  214. "由上至下",
  215. "从下至上"});
  216. this.cmbDir.Location = new System.Drawing.Point(900, 204);
  217. this.cmbDir.Name = "cmbDir";
  218. this.cmbDir.Size = new System.Drawing.Size(80, 20);
  219. this.cmbDir.TabIndex = 18;
  220. //
  221. // btnSave
  222. //
  223. this.btnSave.Location = new System.Drawing.Point(900, 238);
  224. this.btnSave.Name = "btnSave";
  225. this.btnSave.Size = new System.Drawing.Size(52, 23);
  226. this.btnSave.TabIndex = 19;
  227. this.btnSave.Text = "保存";
  228. this.btnSave.UseVisualStyleBackColor = true;
  229. this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
  230. //
  231. // btnDeleRule
  232. //
  233. this.btnDeleRule.Location = new System.Drawing.Point(101, 9);
  234. this.btnDeleRule.Name = "btnDeleRule";
  235. this.btnDeleRule.Size = new System.Drawing.Size(75, 23);
  236. this.btnDeleRule.TabIndex = 20;
  237. this.btnDeleRule.Text = "删除线圈";
  238. this.btnDeleRule.UseVisualStyleBackColor = true;
  239. this.btnDeleRule.Click += new System.EventHandler(this.btnDeleRule_Click);
  240. //
  241. // btnROI
  242. //
  243. this.btnROI.Location = new System.Drawing.Point(206, 9);
  244. this.btnROI.Name = "btnROI";
  245. this.btnROI.Size = new System.Drawing.Size(102, 23);
  246. this.btnROI.TabIndex = 21;
  247. this.btnROI.Text = "获取识别区域";
  248. this.btnROI.UseVisualStyleBackColor = true;
  249. this.btnROI.Click += new System.EventHandler(this.btnROI_Click);
  250. //
  251. // RuleCfg_Form
  252. //
  253. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  254. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  255. this.ClientSize = new System.Drawing.Size(1066, 557);
  256. this.Controls.Add(this.btnROI);
  257. this.Controls.Add(this.btnDeleRule);
  258. this.Controls.Add(this.btnSave);
  259. this.Controls.Add(this.cmbDir);
  260. this.Controls.Add(this.label9);
  261. this.Controls.Add(this.label8);
  262. this.Controls.Add(this.txtTimes);
  263. this.Controls.Add(this.label7);
  264. this.Controls.Add(this.label6);
  265. this.Controls.Add(this.label5);
  266. this.Controls.Add(this.txtMaxWidth);
  267. this.Controls.Add(this.chkDraw);
  268. this.Controls.Add(this.label4);
  269. this.Controls.Add(this.chkEnable);
  270. this.Controls.Add(this.label3);
  271. this.Controls.Add(this.txtMinWidth);
  272. this.Controls.Add(this.label2);
  273. this.Controls.Add(this.txtRuleName);
  274. this.Controls.Add(this.label1);
  275. this.Controls.Add(this.btnAddRule);
  276. this.Controls.Add(this.picBoxVideo);
  277. this.MaximizeBox = false;
  278. this.Name = "RuleCfg_Form";
  279. this.Text = "规则配置";
  280. this.Load += new System.EventHandler(this.RuleCfg_Form_Load);
  281. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.RuleCfg_Form_FormClosed);
  282. ((System.ComponentModel.ISupportInitialize)(this.picBoxVideo)).EndInit();
  283. this.ResumeLayout(false);
  284. this.PerformLayout();
  285. }
  286. #endregion
  287. private System.Windows.Forms.PictureBox picBoxVideo;
  288. private System.Windows.Forms.Button btnAddRule;
  289. private System.Windows.Forms.Label label1;
  290. private System.Windows.Forms.TextBox txtRuleName;
  291. private System.Windows.Forms.TextBox txtMinWidth;
  292. private System.Windows.Forms.Label label2;
  293. private System.Windows.Forms.Label label3;
  294. private System.Windows.Forms.CheckBox chkEnable;
  295. private System.Windows.Forms.CheckBox chkDraw;
  296. private System.Windows.Forms.Label label4;
  297. private System.Windows.Forms.TextBox txtMaxWidth;
  298. private System.Windows.Forms.Label label5;
  299. private System.Windows.Forms.Label label6;
  300. private System.Windows.Forms.Label label7;
  301. private System.Windows.Forms.TextBox txtTimes;
  302. private System.Windows.Forms.Label label8;
  303. private System.Windows.Forms.Label label9;
  304. private System.Windows.Forms.ComboBox cmbDir;
  305. private System.Windows.Forms.Button btnSave;
  306. private System.Windows.Forms.Button btnDeleRule;
  307. private System.Windows.Forms.Button btnROI;
  308. }
  309. }