NumberKeybordForm.Designer.cs 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422
  1. 
  2. partial class NumberKeybordForm
  3. {
  4. /// <summary>
  5. /// Required designer variable.
  6. /// </summary>
  7. private System.ComponentModel.IContainer components = null;
  8. /// <summary>
  9. /// Clean up any resources being used.
  10. /// </summary>
  11. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  12. protected override void Dispose(bool disposing)
  13. {
  14. if (disposing && (components != null))
  15. {
  16. components.Dispose();
  17. }
  18. base.Dispose(disposing);
  19. }
  20. #region Windows Form Designer generated code
  21. /// <summary>
  22. /// Required method for Designer support - do not modify
  23. /// the contents of this method with the code editor.
  24. /// </summary>
  25. private void InitializeComponent()
  26. {
  27. this.label1 = new System.Windows.Forms.Label();
  28. this.btnEnter = new System.Windows.Forms.Button();
  29. this.btnExit = new System.Windows.Forms.Button();
  30. this.btnDel = new System.Windows.Forms.Button();
  31. this.btnClear = new System.Windows.Forms.Button();
  32. this.btnSub = new System.Windows.Forms.Button();
  33. this.btnPoint = new System.Windows.Forms.Button();
  34. this.btnNum0 = new System.Windows.Forms.Button();
  35. this.btnNum3 = new System.Windows.Forms.Button();
  36. this.btnNum2 = new System.Windows.Forms.Button();
  37. this.btnNum1 = new System.Windows.Forms.Button();
  38. this.btnNum6 = new System.Windows.Forms.Button();
  39. this.btnNum5 = new System.Windows.Forms.Button();
  40. this.btnNum4 = new System.Windows.Forms.Button();
  41. this.btnNum9 = new System.Windows.Forms.Button();
  42. this.btnNum8 = new System.Windows.Forms.Button();
  43. this.btnNum7 = new System.Windows.Forms.Button();
  44. this.label2 = new System.Windows.Forms.Label();
  45. this.label3 = new System.Windows.Forms.Label();
  46. this.lblPreviewValue = new System.Windows.Forms.Label();
  47. this.txtNumber = new System.Windows.Forms.TextBox();
  48. this.txtMaximum = new System.Windows.Forms.TextBox();
  49. this.txtMinimum = new System.Windows.Forms.TextBox();
  50. this.SuspendLayout();
  51. //
  52. // label1
  53. //
  54. this.label1.AutoSize = true;
  55. this.label1.Font = new System.Drawing.Font("宋体", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  56. this.label1.ForeColor = System.Drawing.Color.Black;
  57. this.label1.Location = new System.Drawing.Point(207, 74);
  58. this.label1.Name = "label1";
  59. this.label1.Size = new System.Drawing.Size(22, 24);
  60. this.label1.TabIndex = 34;
  61. this.label1.Text = "~";
  62. //
  63. // btnEnter
  64. //
  65. this.btnEnter.BackColor = System.Drawing.Color.Black;
  66. this.btnEnter.Font = new System.Drawing.Font("微软雅黑", 15.75F);
  67. this.btnEnter.ForeColor = System.Drawing.Color.White;
  68. this.btnEnter.Location = new System.Drawing.Point(326, 362);
  69. this.btnEnter.Name = "btnEnter";
  70. this.btnEnter.Size = new System.Drawing.Size(100, 80);
  71. this.btnEnter.TabIndex = 31;
  72. this.btnEnter.TabStop = false;
  73. this.btnEnter.Text = "确认";
  74. this.btnEnter.UseVisualStyleBackColor = false;
  75. this.btnEnter.Click += new System.EventHandler(this.btnEnter_Click);
  76. //
  77. // btnExit
  78. //
  79. this.btnExit.BackColor = System.Drawing.Color.Black;
  80. this.btnExit.Font = new System.Drawing.Font("微软雅黑", 15.75F);
  81. this.btnExit.ForeColor = System.Drawing.Color.White;
  82. this.btnExit.Location = new System.Drawing.Point(326, 276);
  83. this.btnExit.Name = "btnExit";
  84. this.btnExit.Size = new System.Drawing.Size(100, 80);
  85. this.btnExit.TabIndex = 30;
  86. this.btnExit.TabStop = false;
  87. this.btnExit.Text = "取消";
  88. this.btnExit.UseVisualStyleBackColor = false;
  89. this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
  90. //
  91. // btnDel
  92. //
  93. this.btnDel.BackColor = System.Drawing.Color.Black;
  94. this.btnDel.Font = new System.Drawing.Font("微软雅黑", 15.75F);
  95. this.btnDel.ForeColor = System.Drawing.Color.White;
  96. this.btnDel.Location = new System.Drawing.Point(326, 190);
  97. this.btnDel.Name = "btnDel";
  98. this.btnDel.Size = new System.Drawing.Size(100, 80);
  99. this.btnDel.TabIndex = 29;
  100. this.btnDel.TabStop = false;
  101. this.btnDel.Text = "←";
  102. this.btnDel.UseVisualStyleBackColor = false;
  103. this.btnDel.Click += new System.EventHandler(this.btnDel_Click);
  104. //
  105. // btnClear
  106. //
  107. this.btnClear.BackColor = System.Drawing.Color.Black;
  108. this.btnClear.Font = new System.Drawing.Font("微软雅黑", 15.75F);
  109. this.btnClear.ForeColor = System.Drawing.Color.White;
  110. this.btnClear.Location = new System.Drawing.Point(326, 104);
  111. this.btnClear.Name = "btnClear";
  112. this.btnClear.Size = new System.Drawing.Size(100, 80);
  113. this.btnClear.TabIndex = 28;
  114. this.btnClear.TabStop = false;
  115. this.btnClear.Text = "清空";
  116. this.btnClear.UseVisualStyleBackColor = false;
  117. this.btnClear.Click += new System.EventHandler(this.btnClear_Click);
  118. //
  119. // btnSub
  120. //
  121. this.btnSub.BackColor = System.Drawing.Color.Black;
  122. this.btnSub.Font = new System.Drawing.Font("微软雅黑", 15.75F);
  123. this.btnSub.ForeColor = System.Drawing.Color.White;
  124. this.btnSub.Location = new System.Drawing.Point(220, 362);
  125. this.btnSub.Name = "btnSub";
  126. this.btnSub.Size = new System.Drawing.Size(100, 80);
  127. this.btnSub.TabIndex = 23;
  128. this.btnSub.TabStop = false;
  129. this.btnSub.Text = "+/-";
  130. this.btnSub.UseVisualStyleBackColor = false;
  131. this.btnSub.Click += new System.EventHandler(this.btnNegative_Click);
  132. //
  133. // btnPoint
  134. //
  135. this.btnPoint.BackColor = System.Drawing.Color.Black;
  136. this.btnPoint.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  137. this.btnPoint.ForeColor = System.Drawing.Color.White;
  138. this.btnPoint.Location = new System.Drawing.Point(114, 362);
  139. this.btnPoint.Name = "btnPoint";
  140. this.btnPoint.Size = new System.Drawing.Size(100, 80);
  141. this.btnPoint.TabIndex = 22;
  142. this.btnPoint.TabStop = false;
  143. this.btnPoint.Text = ".";
  144. this.btnPoint.UseVisualStyleBackColor = false;
  145. this.btnPoint.Click += new System.EventHandler(this.btnPoint_Click);
  146. //
  147. // btnNum0
  148. //
  149. this.btnNum0.BackColor = System.Drawing.Color.Black;
  150. this.btnNum0.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  151. this.btnNum0.ForeColor = System.Drawing.Color.White;
  152. this.btnNum0.Location = new System.Drawing.Point(8, 362);
  153. this.btnNum0.Name = "btnNum0";
  154. this.btnNum0.Size = new System.Drawing.Size(100, 80);
  155. this.btnNum0.TabIndex = 21;
  156. this.btnNum0.TabStop = false;
  157. this.btnNum0.Text = "0";
  158. this.btnNum0.UseVisualStyleBackColor = false;
  159. this.btnNum0.Click += new System.EventHandler(this.btnNum0_Click);
  160. //
  161. // btnNum3
  162. //
  163. this.btnNum3.BackColor = System.Drawing.Color.Black;
  164. this.btnNum3.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  165. this.btnNum3.ForeColor = System.Drawing.Color.White;
  166. this.btnNum3.Location = new System.Drawing.Point(220, 276);
  167. this.btnNum3.Name = "btnNum3";
  168. this.btnNum3.Size = new System.Drawing.Size(100, 80);
  169. this.btnNum3.TabIndex = 20;
  170. this.btnNum3.TabStop = false;
  171. this.btnNum3.Text = "3";
  172. this.btnNum3.UseVisualStyleBackColor = false;
  173. this.btnNum3.Click += new System.EventHandler(this.btnNum3_Click);
  174. //
  175. // btnNum2
  176. //
  177. this.btnNum2.BackColor = System.Drawing.Color.Black;
  178. this.btnNum2.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  179. this.btnNum2.ForeColor = System.Drawing.Color.White;
  180. this.btnNum2.Location = new System.Drawing.Point(114, 276);
  181. this.btnNum2.Name = "btnNum2";
  182. this.btnNum2.Size = new System.Drawing.Size(100, 80);
  183. this.btnNum2.TabIndex = 19;
  184. this.btnNum2.TabStop = false;
  185. this.btnNum2.Text = "2";
  186. this.btnNum2.UseVisualStyleBackColor = false;
  187. this.btnNum2.Click += new System.EventHandler(this.btnNum2_Click);
  188. //
  189. // btnNum1
  190. //
  191. this.btnNum1.BackColor = System.Drawing.Color.Black;
  192. this.btnNum1.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  193. this.btnNum1.ForeColor = System.Drawing.Color.White;
  194. this.btnNum1.Location = new System.Drawing.Point(8, 276);
  195. this.btnNum1.Name = "btnNum1";
  196. this.btnNum1.Size = new System.Drawing.Size(100, 80);
  197. this.btnNum1.TabIndex = 18;
  198. this.btnNum1.TabStop = false;
  199. this.btnNum1.Text = "1";
  200. this.btnNum1.UseVisualStyleBackColor = false;
  201. this.btnNum1.Click += new System.EventHandler(this.btnNum1_Click);
  202. //
  203. // btnNum6
  204. //
  205. this.btnNum6.BackColor = System.Drawing.Color.Black;
  206. this.btnNum6.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  207. this.btnNum6.ForeColor = System.Drawing.Color.White;
  208. this.btnNum6.Location = new System.Drawing.Point(220, 190);
  209. this.btnNum6.Name = "btnNum6";
  210. this.btnNum6.Size = new System.Drawing.Size(100, 80);
  211. this.btnNum6.TabIndex = 17;
  212. this.btnNum6.TabStop = false;
  213. this.btnNum6.Text = "6";
  214. this.btnNum6.UseVisualStyleBackColor = false;
  215. this.btnNum6.Click += new System.EventHandler(this.btnNum6_Click);
  216. //
  217. // btnNum5
  218. //
  219. this.btnNum5.BackColor = System.Drawing.Color.Black;
  220. this.btnNum5.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  221. this.btnNum5.ForeColor = System.Drawing.Color.White;
  222. this.btnNum5.Location = new System.Drawing.Point(114, 190);
  223. this.btnNum5.Name = "btnNum5";
  224. this.btnNum5.Size = new System.Drawing.Size(100, 80);
  225. this.btnNum5.TabIndex = 16;
  226. this.btnNum5.TabStop = false;
  227. this.btnNum5.Text = "5";
  228. this.btnNum5.UseVisualStyleBackColor = false;
  229. this.btnNum5.Click += new System.EventHandler(this.btnNum5_Click);
  230. //
  231. // btnNum4
  232. //
  233. this.btnNum4.BackColor = System.Drawing.Color.Black;
  234. this.btnNum4.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  235. this.btnNum4.ForeColor = System.Drawing.Color.White;
  236. this.btnNum4.Location = new System.Drawing.Point(8, 190);
  237. this.btnNum4.Name = "btnNum4";
  238. this.btnNum4.Size = new System.Drawing.Size(100, 80);
  239. this.btnNum4.TabIndex = 15;
  240. this.btnNum4.TabStop = false;
  241. this.btnNum4.Text = "4";
  242. this.btnNum4.UseVisualStyleBackColor = false;
  243. this.btnNum4.Click += new System.EventHandler(this.btnNum4_Click);
  244. //
  245. // btnNum9
  246. //
  247. this.btnNum9.BackColor = System.Drawing.Color.Black;
  248. this.btnNum9.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  249. this.btnNum9.ForeColor = System.Drawing.Color.White;
  250. this.btnNum9.Location = new System.Drawing.Point(220, 104);
  251. this.btnNum9.Name = "btnNum9";
  252. this.btnNum9.Size = new System.Drawing.Size(100, 80);
  253. this.btnNum9.TabIndex = 14;
  254. this.btnNum9.TabStop = false;
  255. this.btnNum9.Text = "9";
  256. this.btnNum9.UseVisualStyleBackColor = false;
  257. this.btnNum9.Click += new System.EventHandler(this.btnNum9_Click);
  258. //
  259. // btnNum8
  260. //
  261. this.btnNum8.BackColor = System.Drawing.Color.Black;
  262. this.btnNum8.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  263. this.btnNum8.ForeColor = System.Drawing.Color.White;
  264. this.btnNum8.Location = new System.Drawing.Point(114, 104);
  265. this.btnNum8.Name = "btnNum8";
  266. this.btnNum8.Size = new System.Drawing.Size(100, 80);
  267. this.btnNum8.TabIndex = 13;
  268. this.btnNum8.TabStop = false;
  269. this.btnNum8.Text = "8";
  270. this.btnNum8.UseVisualStyleBackColor = false;
  271. this.btnNum8.Click += new System.EventHandler(this.btnNum8_Click);
  272. //
  273. // btnNum7
  274. //
  275. this.btnNum7.BackColor = System.Drawing.SystemColors.ActiveCaptionText;
  276. this.btnNum7.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  277. this.btnNum7.ForeColor = System.Drawing.Color.White;
  278. this.btnNum7.Location = new System.Drawing.Point(8, 104);
  279. this.btnNum7.Name = "btnNum7";
  280. this.btnNum7.Size = new System.Drawing.Size(100, 80);
  281. this.btnNum7.TabIndex = 12;
  282. this.btnNum7.TabStop = false;
  283. this.btnNum7.Text = "7";
  284. this.btnNum7.UseVisualStyleBackColor = false;
  285. this.btnNum7.Click += new System.EventHandler(this.btnNum7_Click);
  286. //
  287. // label2
  288. //
  289. this.label2.AutoSize = true;
  290. this.label2.Font = new System.Drawing.Font("宋体", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  291. this.label2.ForeColor = System.Drawing.Color.Black;
  292. this.label2.Location = new System.Drawing.Point(194, 10);
  293. this.label2.Name = "label2";
  294. this.label2.Size = new System.Drawing.Size(53, 27);
  295. this.label2.TabIndex = 35;
  296. this.label2.Text = "新:";
  297. //
  298. // label3
  299. //
  300. this.label3.AutoSize = true;
  301. this.label3.Font = new System.Drawing.Font("宋体", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  302. this.label3.ForeColor = System.Drawing.Color.Black;
  303. this.label3.Location = new System.Drawing.Point(3, 9);
  304. this.label3.Name = "label3";
  305. this.label3.Size = new System.Drawing.Size(53, 27);
  306. this.label3.TabIndex = 36;
  307. this.label3.Text = "旧:";
  308. //
  309. // lblPreviewValue
  310. //
  311. this.lblPreviewValue.AutoSize = true;
  312. this.lblPreviewValue.Font = new System.Drawing.Font("宋体", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  313. this.lblPreviewValue.ForeColor = System.Drawing.Color.Black;
  314. this.lblPreviewValue.Location = new System.Drawing.Point(44, 10);
  315. this.lblPreviewValue.Name = "lblPreviewValue";
  316. this.lblPreviewValue.Size = new System.Drawing.Size(66, 27);
  317. this.lblPreviewValue.TabIndex = 37;
  318. this.lblPreviewValue.Text = "未知";
  319. //
  320. // txtNumber
  321. //
  322. this.txtNumber.Font = new System.Drawing.Font("宋体", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  323. this.txtNumber.Location = new System.Drawing.Point(253, 6);
  324. this.txtNumber.MaxLength = 20;
  325. this.txtNumber.Name = "txtNumber";
  326. this.txtNumber.Size = new System.Drawing.Size(173, 38);
  327. this.txtNumber.TabIndex = 38;
  328. this.txtNumber.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
  329. this.txtNumber.Click += new System.EventHandler(this.txtNumber_Click);
  330. this.txtNumber.TextChanged += new System.EventHandler(this.txtNumber_TextChanged);
  331. //
  332. // txtMaximum
  333. //
  334. this.txtMaximum.Font = new System.Drawing.Font("宋体", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  335. this.txtMaximum.Location = new System.Drawing.Point(253, 63);
  336. this.txtMaximum.MaxLength = 20;
  337. this.txtMaximum.Name = "txtMaximum";
  338. this.txtMaximum.Size = new System.Drawing.Size(173, 35);
  339. this.txtMaximum.TabIndex = 39;
  340. this.txtMaximum.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
  341. this.txtMaximum.Click += new System.EventHandler(this.txtMaximum_Click);
  342. this.txtMaximum.TextChanged += new System.EventHandler(this.txtMaximum_TextChanged);
  343. //
  344. // txtMinimum
  345. //
  346. this.txtMinimum.Font = new System.Drawing.Font("宋体", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  347. this.txtMinimum.Location = new System.Drawing.Point(8, 63);
  348. this.txtMinimum.MaxLength = 20;
  349. this.txtMinimum.Name = "txtMinimum";
  350. this.txtMinimum.Size = new System.Drawing.Size(173, 35);
  351. this.txtMinimum.TabIndex = 40;
  352. this.txtMinimum.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
  353. this.txtMinimum.Click += new System.EventHandler(this.txtMinimum_Click);
  354. this.txtMinimum.TextChanged += new System.EventHandler(this.txtMinimum_TextChanged);
  355. //
  356. // NumberKeybordForm
  357. //
  358. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  359. this.ClientSize = new System.Drawing.Size(432, 448);
  360. this.Controls.Add(this.txtMinimum);
  361. this.Controls.Add(this.txtMaximum);
  362. this.Controls.Add(this.txtNumber);
  363. this.Controls.Add(this.lblPreviewValue);
  364. this.Controls.Add(this.label3);
  365. this.Controls.Add(this.label2);
  366. this.Controls.Add(this.btnSub);
  367. this.Controls.Add(this.btnPoint);
  368. this.Controls.Add(this.label1);
  369. this.Controls.Add(this.btnNum0);
  370. this.Controls.Add(this.btnNum3);
  371. this.Controls.Add(this.btnEnter);
  372. this.Controls.Add(this.btnNum2);
  373. this.Controls.Add(this.btnExit);
  374. this.Controls.Add(this.btnNum1);
  375. this.Controls.Add(this.btnDel);
  376. this.Controls.Add(this.btnNum6);
  377. this.Controls.Add(this.btnClear);
  378. this.Controls.Add(this.btnNum5);
  379. this.Controls.Add(this.btnNum4);
  380. this.Controls.Add(this.btnNum9);
  381. this.Controls.Add(this.btnNum7);
  382. this.Controls.Add(this.btnNum8);
  383. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
  384. this.MaximumSize = new System.Drawing.Size(448, 487);
  385. this.MinimumSize = new System.Drawing.Size(448, 487);
  386. this.Name = "NumberKeybordForm";
  387. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  388. this.Text = "数字键盘";
  389. this.Load += new System.EventHandler(this.NumberKeybordForm_Load);
  390. this.ResumeLayout(false);
  391. this.PerformLayout();
  392. }
  393. #endregion
  394. private System.Windows.Forms.Label label1;
  395. private System.Windows.Forms.Button btnEnter;
  396. private System.Windows.Forms.Button btnExit;
  397. private System.Windows.Forms.Button btnDel;
  398. private System.Windows.Forms.Button btnClear;
  399. private System.Windows.Forms.Button btnSub;
  400. private System.Windows.Forms.Button btnPoint;
  401. private System.Windows.Forms.Button btnNum0;
  402. private System.Windows.Forms.Button btnNum3;
  403. private System.Windows.Forms.Button btnNum2;
  404. private System.Windows.Forms.Button btnNum1;
  405. private System.Windows.Forms.Button btnNum6;
  406. private System.Windows.Forms.Button btnNum5;
  407. private System.Windows.Forms.Button btnNum4;
  408. private System.Windows.Forms.Button btnNum9;
  409. private System.Windows.Forms.Button btnNum8;
  410. private System.Windows.Forms.Button btnNum7;
  411. private System.Windows.Forms.Label label2;
  412. private System.Windows.Forms.Label label3;
  413. private System.Windows.Forms.Label lblPreviewValue;
  414. private System.Windows.Forms.TextBox txtNumber;
  415. private System.Windows.Forms.TextBox txtMaximum;
  416. private System.Windows.Forms.TextBox txtMinimum;
  417. }