UCKeyBorderNum.Designer.cs 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074
  1. // ***********************************************************************
  2. // Assembly : HZH_Controls
  3. // Created : 08-08-2019
  4. //
  5. // ***********************************************************************
  6. // <copyright file="UCKeyBorderNum.Designer.cs">
  7. // Copyright by Huang Zhenghui(黄正辉) All, QQ group:568015492 QQ:623128629 Email:623128629@qq.com
  8. // </copyright>
  9. //
  10. // Blog: https://www.cnblogs.com/bfyx
  11. // GitHub:https://github.com/kwwwvagaa/NetWinformControl
  12. // gitee:https://gitee.com/kwwwvagaa/net_winform_custom_control.git
  13. //
  14. // If you use this code, please keep this note.
  15. // ***********************************************************************
  16. namespace HZH_Controls.Controls
  17. {
  18. /// <summary>
  19. /// Class UCKeyBorderNum.
  20. /// Implements the <see cref="System.Windows.Forms.UserControl" />
  21. /// </summary>
  22. /// <seealso cref="System.Windows.Forms.UserControl" />
  23. partial class UCKeyBorderNum
  24. {
  25. /// <summary>
  26. /// 必需的设计器变量。
  27. /// </summary>
  28. private System.ComponentModel.IContainer components = null;
  29. /// <summary>
  30. /// 清理所有正在使用的资源。
  31. /// </summary>
  32. /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
  33. protected override void Dispose(bool disposing)
  34. {
  35. if (disposing && (components != null))
  36. {
  37. components.Dispose();
  38. }
  39. base.Dispose(disposing);
  40. }
  41. #region 组件设计器生成的代码
  42. /// <summary>
  43. /// 设计器支持所需的方法 - 不要
  44. /// 使用代码编辑器修改此方法的内容。
  45. /// </summary>
  46. private void InitializeComponent()
  47. {
  48. this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
  49. this.panel14 = new System.Windows.Forms.Panel();
  50. this.label11 = new System.Windows.Forms.Label();
  51. this.ucSplitLine_V14 = new HZH_Controls.Controls.UCSplitLine_V();
  52. this.panel13 = new System.Windows.Forms.Panel();
  53. this.label12 = new System.Windows.Forms.Label();
  54. this.ucSplitLine_V13 = new HZH_Controls.Controls.UCSplitLine_V();
  55. this.panel12 = new System.Windows.Forms.Panel();
  56. this.label13 = new System.Windows.Forms.Label();
  57. this.ucSplitLine_V12 = new HZH_Controls.Controls.UCSplitLine_V();
  58. this.panel11 = new System.Windows.Forms.Panel();
  59. this.label10 = new System.Windows.Forms.Label();
  60. this.ucSplitLine_H11 = new HZH_Controls.Controls.UCSplitLine_H();
  61. this.ucSplitLine_V11 = new HZH_Controls.Controls.UCSplitLine_V();
  62. this.panel10 = new System.Windows.Forms.Panel();
  63. this.label9 = new System.Windows.Forms.Label();
  64. this.ucSplitLine_H10 = new HZH_Controls.Controls.UCSplitLine_H();
  65. this.ucSplitLine_V10 = new HZH_Controls.Controls.UCSplitLine_V();
  66. this.panel9 = new System.Windows.Forms.Panel();
  67. this.label8 = new System.Windows.Forms.Label();
  68. this.ucSplitLine_H9 = new HZH_Controls.Controls.UCSplitLine_H();
  69. this.ucSplitLine_V9 = new HZH_Controls.Controls.UCSplitLine_V();
  70. this.panel8 = new System.Windows.Forms.Panel();
  71. this.label6 = new System.Windows.Forms.Label();
  72. this.ucSplitLine_H8 = new HZH_Controls.Controls.UCSplitLine_H();
  73. this.ucSplitLine_V8 = new HZH_Controls.Controls.UCSplitLine_V();
  74. this.panel7 = new System.Windows.Forms.Panel();
  75. this.label14 = new System.Windows.Forms.Label();
  76. this.panel6 = new System.Windows.Forms.Panel();
  77. this.label7 = new System.Windows.Forms.Label();
  78. this.ucSplitLine_H6 = new HZH_Controls.Controls.UCSplitLine_H();
  79. this.ucSplitLine_V6 = new HZH_Controls.Controls.UCSplitLine_V();
  80. this.panel5 = new System.Windows.Forms.Panel();
  81. this.label3 = new System.Windows.Forms.Label();
  82. this.ucSplitLine_H5 = new HZH_Controls.Controls.UCSplitLine_H();
  83. this.ucSplitLine_V5 = new HZH_Controls.Controls.UCSplitLine_V();
  84. this.panel4 = new System.Windows.Forms.Panel();
  85. this.label5 = new System.Windows.Forms.Label();
  86. this.ucSplitLine_H4 = new HZH_Controls.Controls.UCSplitLine_H();
  87. this.ucSplitLine_V4 = new HZH_Controls.Controls.UCSplitLine_V();
  88. this.panel3 = new System.Windows.Forms.Panel();
  89. this.label4 = new System.Windows.Forms.Label();
  90. this.ucSplitLine_H3 = new HZH_Controls.Controls.UCSplitLine_H();
  91. this.panel2 = new System.Windows.Forms.Panel();
  92. this.label2 = new System.Windows.Forms.Label();
  93. this.ucSplitLine_H2 = new HZH_Controls.Controls.UCSplitLine_H();
  94. this.ucSplitLine_V2 = new HZH_Controls.Controls.UCSplitLine_V();
  95. this.panel1 = new System.Windows.Forms.Panel();
  96. this.label1 = new System.Windows.Forms.Label();
  97. this.ucSplitLine_H1 = new HZH_Controls.Controls.UCSplitLine_H();
  98. this.ucSplitLine_V1 = new HZH_Controls.Controls.UCSplitLine_V();
  99. this.ucSplitLine_V3 = new HZH_Controls.Controls.UCSplitLine_V();
  100. this.ucSplitLine_V7 = new HZH_Controls.Controls.UCSplitLine_V();
  101. this.ucSplitLine_H7 = new HZH_Controls.Controls.UCSplitLine_H();
  102. this.ucSplitLine_H12 = new HZH_Controls.Controls.UCSplitLine_H();
  103. this.tableLayoutPanel1.SuspendLayout();
  104. this.panel14.SuspendLayout();
  105. this.panel13.SuspendLayout();
  106. this.panel12.SuspendLayout();
  107. this.panel11.SuspendLayout();
  108. this.panel10.SuspendLayout();
  109. this.panel9.SuspendLayout();
  110. this.panel8.SuspendLayout();
  111. this.panel7.SuspendLayout();
  112. this.panel6.SuspendLayout();
  113. this.panel5.SuspendLayout();
  114. this.panel4.SuspendLayout();
  115. this.panel3.SuspendLayout();
  116. this.panel2.SuspendLayout();
  117. this.panel1.SuspendLayout();
  118. this.SuspendLayout();
  119. //
  120. // tableLayoutPanel1
  121. //
  122. this.tableLayoutPanel1.ColumnCount = 4;
  123. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));
  124. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));
  125. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));
  126. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));
  127. this.tableLayoutPanel1.Controls.Add(this.panel14, 0, 3);
  128. this.tableLayoutPanel1.Controls.Add(this.panel13, 0, 3);
  129. this.tableLayoutPanel1.Controls.Add(this.panel12, 0, 3);
  130. this.tableLayoutPanel1.Controls.Add(this.panel11, 0, 2);
  131. this.tableLayoutPanel1.Controls.Add(this.panel10, 1, 2);
  132. this.tableLayoutPanel1.Controls.Add(this.panel9, 2, 2);
  133. this.tableLayoutPanel1.Controls.Add(this.panel8, 1, 1);
  134. this.tableLayoutPanel1.Controls.Add(this.panel7, 3, 1);
  135. this.tableLayoutPanel1.Controls.Add(this.panel6, 2, 1);
  136. this.tableLayoutPanel1.Controls.Add(this.panel5, 2, 0);
  137. this.tableLayoutPanel1.Controls.Add(this.panel4, 0, 1);
  138. this.tableLayoutPanel1.Controls.Add(this.panel3, 3, 0);
  139. this.tableLayoutPanel1.Controls.Add(this.panel2, 1, 0);
  140. this.tableLayoutPanel1.Controls.Add(this.panel1, 0, 0);
  141. this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  142. this.tableLayoutPanel1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  143. this.tableLayoutPanel1.Location = new System.Drawing.Point(1, 1);
  144. this.tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(0);
  145. this.tableLayoutPanel1.Name = "tableLayoutPanel1";
  146. this.tableLayoutPanel1.RowCount = 4;
  147. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
  148. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
  149. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
  150. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
  151. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
  152. this.tableLayoutPanel1.Size = new System.Drawing.Size(422, 216);
  153. this.tableLayoutPanel1.TabIndex = 0;
  154. //
  155. // panel14
  156. //
  157. this.panel14.Controls.Add(this.label11);
  158. this.panel14.Controls.Add(this.ucSplitLine_V14);
  159. this.panel14.Dock = System.Windows.Forms.DockStyle.Fill;
  160. this.panel14.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  161. this.panel14.Location = new System.Drawing.Point(0, 162);
  162. this.panel14.Margin = new System.Windows.Forms.Padding(0);
  163. this.panel14.Name = "panel14";
  164. this.panel14.Size = new System.Drawing.Size(105, 54);
  165. this.panel14.TabIndex = 13;
  166. //
  167. // label11
  168. //
  169. this.label11.Dock = System.Windows.Forms.DockStyle.Fill;
  170. this.label11.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
  171. this.label11.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  172. this.label11.Location = new System.Drawing.Point(0, 0);
  173. this.label11.Name = "label11";
  174. this.label11.Size = new System.Drawing.Size(104, 54);
  175. this.label11.TabIndex = 3;
  176. this.label11.Tag = "00";
  177. this.label11.Text = "00";
  178. this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  179. this.label11.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Num_MouseDown);
  180. //
  181. // ucSplitLine_V14
  182. //
  183. this.ucSplitLine_V14.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  184. this.ucSplitLine_V14.Dock = System.Windows.Forms.DockStyle.Right;
  185. this.ucSplitLine_V14.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  186. this.ucSplitLine_V14.Location = new System.Drawing.Point(104, 0);
  187. this.ucSplitLine_V14.Name = "ucSplitLine_V14";
  188. this.ucSplitLine_V14.Size = new System.Drawing.Size(1, 54);
  189. this.ucSplitLine_V14.TabIndex = 0;
  190. this.ucSplitLine_V14.TabStop = false;
  191. //
  192. // panel13
  193. //
  194. this.panel13.Controls.Add(this.label12);
  195. this.panel13.Controls.Add(this.ucSplitLine_V13);
  196. this.panel13.Dock = System.Windows.Forms.DockStyle.Fill;
  197. this.panel13.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  198. this.panel13.Location = new System.Drawing.Point(105, 162);
  199. this.panel13.Margin = new System.Windows.Forms.Padding(0);
  200. this.panel13.Name = "panel13";
  201. this.panel13.Size = new System.Drawing.Size(105, 54);
  202. this.panel13.TabIndex = 12;
  203. //
  204. // label12
  205. //
  206. this.label12.Dock = System.Windows.Forms.DockStyle.Fill;
  207. this.label12.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
  208. this.label12.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  209. this.label12.Location = new System.Drawing.Point(0, 0);
  210. this.label12.Name = "label12";
  211. this.label12.Size = new System.Drawing.Size(104, 54);
  212. this.label12.TabIndex = 3;
  213. this.label12.Tag = "0";
  214. this.label12.Text = "0";
  215. this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  216. this.label12.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Num_MouseDown);
  217. //
  218. // ucSplitLine_V13
  219. //
  220. this.ucSplitLine_V13.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  221. this.ucSplitLine_V13.Dock = System.Windows.Forms.DockStyle.Right;
  222. this.ucSplitLine_V13.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  223. this.ucSplitLine_V13.Location = new System.Drawing.Point(104, 0);
  224. this.ucSplitLine_V13.Name = "ucSplitLine_V13";
  225. this.ucSplitLine_V13.Size = new System.Drawing.Size(1, 54);
  226. this.ucSplitLine_V13.TabIndex = 0;
  227. this.ucSplitLine_V13.TabStop = false;
  228. //
  229. // panel12
  230. //
  231. this.panel12.Controls.Add(this.label13);
  232. this.panel12.Controls.Add(this.ucSplitLine_V12);
  233. this.panel12.Dock = System.Windows.Forms.DockStyle.Fill;
  234. this.panel12.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  235. this.panel12.Location = new System.Drawing.Point(210, 162);
  236. this.panel12.Margin = new System.Windows.Forms.Padding(0);
  237. this.panel12.Name = "panel12";
  238. this.panel12.Size = new System.Drawing.Size(105, 54);
  239. this.panel12.TabIndex = 11;
  240. //
  241. // label13
  242. //
  243. this.label13.Dock = System.Windows.Forms.DockStyle.Fill;
  244. this.label13.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
  245. this.label13.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  246. this.label13.Location = new System.Drawing.Point(0, 0);
  247. this.label13.Name = "label13";
  248. this.label13.Size = new System.Drawing.Size(104, 54);
  249. this.label13.TabIndex = 3;
  250. this.label13.Tag = ".";
  251. this.label13.Text = ".";
  252. this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  253. this.label13.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Num_MouseDown);
  254. //
  255. // ucSplitLine_V12
  256. //
  257. this.ucSplitLine_V12.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  258. this.ucSplitLine_V12.Dock = System.Windows.Forms.DockStyle.Right;
  259. this.ucSplitLine_V12.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  260. this.ucSplitLine_V12.Location = new System.Drawing.Point(104, 0);
  261. this.ucSplitLine_V12.Name = "ucSplitLine_V12";
  262. this.ucSplitLine_V12.Size = new System.Drawing.Size(1, 54);
  263. this.ucSplitLine_V12.TabIndex = 0;
  264. this.ucSplitLine_V12.TabStop = false;
  265. //
  266. // panel11
  267. //
  268. this.panel11.Controls.Add(this.label10);
  269. this.panel11.Controls.Add(this.ucSplitLine_H11);
  270. this.panel11.Controls.Add(this.ucSplitLine_V11);
  271. this.panel11.Dock = System.Windows.Forms.DockStyle.Fill;
  272. this.panel11.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  273. this.panel11.Location = new System.Drawing.Point(0, 108);
  274. this.panel11.Margin = new System.Windows.Forms.Padding(0);
  275. this.panel11.Name = "panel11";
  276. this.panel11.Size = new System.Drawing.Size(105, 54);
  277. this.panel11.TabIndex = 10;
  278. //
  279. // label10
  280. //
  281. this.label10.Dock = System.Windows.Forms.DockStyle.Fill;
  282. this.label10.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
  283. this.label10.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  284. this.label10.Location = new System.Drawing.Point(0, 0);
  285. this.label10.Name = "label10";
  286. this.label10.Size = new System.Drawing.Size(104, 53);
  287. this.label10.TabIndex = 3;
  288. this.label10.Tag = "7";
  289. this.label10.Text = "7";
  290. this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  291. this.label10.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Num_MouseDown);
  292. //
  293. // ucSplitLine_H11
  294. //
  295. this.ucSplitLine_H11.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  296. this.ucSplitLine_H11.Dock = System.Windows.Forms.DockStyle.Bottom;
  297. this.ucSplitLine_H11.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  298. this.ucSplitLine_H11.Location = new System.Drawing.Point(0, 53);
  299. this.ucSplitLine_H11.Name = "ucSplitLine_H11";
  300. this.ucSplitLine_H11.Size = new System.Drawing.Size(104, 1);
  301. this.ucSplitLine_H11.TabIndex = 1;
  302. this.ucSplitLine_H11.TabStop = false;
  303. //
  304. // ucSplitLine_V11
  305. //
  306. this.ucSplitLine_V11.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  307. this.ucSplitLine_V11.Dock = System.Windows.Forms.DockStyle.Right;
  308. this.ucSplitLine_V11.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  309. this.ucSplitLine_V11.Location = new System.Drawing.Point(104, 0);
  310. this.ucSplitLine_V11.Name = "ucSplitLine_V11";
  311. this.ucSplitLine_V11.Size = new System.Drawing.Size(1, 54);
  312. this.ucSplitLine_V11.TabIndex = 0;
  313. this.ucSplitLine_V11.TabStop = false;
  314. //
  315. // panel10
  316. //
  317. this.panel10.Controls.Add(this.label9);
  318. this.panel10.Controls.Add(this.ucSplitLine_H10);
  319. this.panel10.Controls.Add(this.ucSplitLine_V10);
  320. this.panel10.Dock = System.Windows.Forms.DockStyle.Fill;
  321. this.panel10.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  322. this.panel10.Location = new System.Drawing.Point(105, 108);
  323. this.panel10.Margin = new System.Windows.Forms.Padding(0);
  324. this.panel10.Name = "panel10";
  325. this.panel10.Size = new System.Drawing.Size(105, 54);
  326. this.panel10.TabIndex = 9;
  327. //
  328. // label9
  329. //
  330. this.label9.Dock = System.Windows.Forms.DockStyle.Fill;
  331. this.label9.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
  332. this.label9.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  333. this.label9.Location = new System.Drawing.Point(0, 0);
  334. this.label9.Name = "label9";
  335. this.label9.Size = new System.Drawing.Size(104, 53);
  336. this.label9.TabIndex = 3;
  337. this.label9.Tag = "8";
  338. this.label9.Text = "8";
  339. this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  340. this.label9.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Num_MouseDown);
  341. //
  342. // ucSplitLine_H10
  343. //
  344. this.ucSplitLine_H10.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  345. this.ucSplitLine_H10.Dock = System.Windows.Forms.DockStyle.Bottom;
  346. this.ucSplitLine_H10.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  347. this.ucSplitLine_H10.Location = new System.Drawing.Point(0, 53);
  348. this.ucSplitLine_H10.Name = "ucSplitLine_H10";
  349. this.ucSplitLine_H10.Size = new System.Drawing.Size(104, 1);
  350. this.ucSplitLine_H10.TabIndex = 1;
  351. this.ucSplitLine_H10.TabStop = false;
  352. //
  353. // ucSplitLine_V10
  354. //
  355. this.ucSplitLine_V10.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  356. this.ucSplitLine_V10.Dock = System.Windows.Forms.DockStyle.Right;
  357. this.ucSplitLine_V10.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  358. this.ucSplitLine_V10.Location = new System.Drawing.Point(104, 0);
  359. this.ucSplitLine_V10.Name = "ucSplitLine_V10";
  360. this.ucSplitLine_V10.Size = new System.Drawing.Size(1, 54);
  361. this.ucSplitLine_V10.TabIndex = 0;
  362. this.ucSplitLine_V10.TabStop = false;
  363. //
  364. // panel9
  365. //
  366. this.panel9.Controls.Add(this.label8);
  367. this.panel9.Controls.Add(this.ucSplitLine_H9);
  368. this.panel9.Controls.Add(this.ucSplitLine_V9);
  369. this.panel9.Dock = System.Windows.Forms.DockStyle.Fill;
  370. this.panel9.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  371. this.panel9.Location = new System.Drawing.Point(210, 108);
  372. this.panel9.Margin = new System.Windows.Forms.Padding(0);
  373. this.panel9.Name = "panel9";
  374. this.panel9.Size = new System.Drawing.Size(105, 54);
  375. this.panel9.TabIndex = 8;
  376. //
  377. // label8
  378. //
  379. this.label8.Dock = System.Windows.Forms.DockStyle.Fill;
  380. this.label8.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
  381. this.label8.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  382. this.label8.Location = new System.Drawing.Point(0, 0);
  383. this.label8.Name = "label8";
  384. this.label8.Size = new System.Drawing.Size(104, 53);
  385. this.label8.TabIndex = 3;
  386. this.label8.Tag = "9";
  387. this.label8.Text = "9";
  388. this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  389. this.label8.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Num_MouseDown);
  390. //
  391. // ucSplitLine_H9
  392. //
  393. this.ucSplitLine_H9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  394. this.ucSplitLine_H9.Dock = System.Windows.Forms.DockStyle.Bottom;
  395. this.ucSplitLine_H9.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  396. this.ucSplitLine_H9.Location = new System.Drawing.Point(0, 53);
  397. this.ucSplitLine_H9.Name = "ucSplitLine_H9";
  398. this.ucSplitLine_H9.Size = new System.Drawing.Size(104, 1);
  399. this.ucSplitLine_H9.TabIndex = 1;
  400. this.ucSplitLine_H9.TabStop = false;
  401. //
  402. // ucSplitLine_V9
  403. //
  404. this.ucSplitLine_V9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  405. this.ucSplitLine_V9.Dock = System.Windows.Forms.DockStyle.Right;
  406. this.ucSplitLine_V9.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  407. this.ucSplitLine_V9.Location = new System.Drawing.Point(104, 0);
  408. this.ucSplitLine_V9.Name = "ucSplitLine_V9";
  409. this.ucSplitLine_V9.Size = new System.Drawing.Size(1, 54);
  410. this.ucSplitLine_V9.TabIndex = 0;
  411. this.ucSplitLine_V9.TabStop = false;
  412. //
  413. // panel8
  414. //
  415. this.panel8.Controls.Add(this.label6);
  416. this.panel8.Controls.Add(this.ucSplitLine_H8);
  417. this.panel8.Controls.Add(this.ucSplitLine_V8);
  418. this.panel8.Dock = System.Windows.Forms.DockStyle.Fill;
  419. this.panel8.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  420. this.panel8.Location = new System.Drawing.Point(105, 54);
  421. this.panel8.Margin = new System.Windows.Forms.Padding(0);
  422. this.panel8.Name = "panel8";
  423. this.panel8.Size = new System.Drawing.Size(105, 54);
  424. this.panel8.TabIndex = 7;
  425. //
  426. // label6
  427. //
  428. this.label6.Dock = System.Windows.Forms.DockStyle.Fill;
  429. this.label6.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
  430. this.label6.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  431. this.label6.Location = new System.Drawing.Point(0, 0);
  432. this.label6.Name = "label6";
  433. this.label6.Size = new System.Drawing.Size(104, 53);
  434. this.label6.TabIndex = 3;
  435. this.label6.Tag = "5";
  436. this.label6.Text = "5";
  437. this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  438. this.label6.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Num_MouseDown);
  439. //
  440. // ucSplitLine_H8
  441. //
  442. this.ucSplitLine_H8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  443. this.ucSplitLine_H8.Dock = System.Windows.Forms.DockStyle.Bottom;
  444. this.ucSplitLine_H8.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  445. this.ucSplitLine_H8.Location = new System.Drawing.Point(0, 53);
  446. this.ucSplitLine_H8.Name = "ucSplitLine_H8";
  447. this.ucSplitLine_H8.Size = new System.Drawing.Size(104, 1);
  448. this.ucSplitLine_H8.TabIndex = 1;
  449. this.ucSplitLine_H8.TabStop = false;
  450. //
  451. // ucSplitLine_V8
  452. //
  453. this.ucSplitLine_V8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  454. this.ucSplitLine_V8.Dock = System.Windows.Forms.DockStyle.Right;
  455. this.ucSplitLine_V8.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  456. this.ucSplitLine_V8.Location = new System.Drawing.Point(104, 0);
  457. this.ucSplitLine_V8.Name = "ucSplitLine_V8";
  458. this.ucSplitLine_V8.Size = new System.Drawing.Size(1, 54);
  459. this.ucSplitLine_V8.TabIndex = 0;
  460. this.ucSplitLine_V8.TabStop = false;
  461. //
  462. // panel7
  463. //
  464. this.panel7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(122)))), ((int)(((byte)(122)))), ((int)(((byte)(122)))));
  465. this.panel7.Controls.Add(this.label14);
  466. this.panel7.Dock = System.Windows.Forms.DockStyle.Fill;
  467. this.panel7.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  468. this.panel7.Location = new System.Drawing.Point(315, 54);
  469. this.panel7.Margin = new System.Windows.Forms.Padding(0);
  470. this.panel7.Name = "panel7";
  471. this.tableLayoutPanel1.SetRowSpan(this.panel7, 3);
  472. this.panel7.Size = new System.Drawing.Size(107, 162);
  473. this.panel7.TabIndex = 6;
  474. //
  475. // label14
  476. //
  477. this.label14.BackColor = System.Drawing.Color.White;
  478. this.label14.Dock = System.Windows.Forms.DockStyle.Fill;
  479. this.label14.Font = new System.Drawing.Font("微软雅黑", 30F);
  480. this.label14.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  481. this.label14.Location = new System.Drawing.Point(0, 0);
  482. this.label14.Name = "label14";
  483. this.label14.Size = new System.Drawing.Size(107, 162);
  484. this.label14.TabIndex = 3;
  485. this.label14.Tag = "{ENTER}";
  486. this.label14.Text = "确\r\n定";
  487. this.label14.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  488. this.label14.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Enter_MouseDown);
  489. //
  490. // panel6
  491. //
  492. this.panel6.Controls.Add(this.label7);
  493. this.panel6.Controls.Add(this.ucSplitLine_H6);
  494. this.panel6.Controls.Add(this.ucSplitLine_V6);
  495. this.panel6.Dock = System.Windows.Forms.DockStyle.Fill;
  496. this.panel6.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  497. this.panel6.Location = new System.Drawing.Point(210, 54);
  498. this.panel6.Margin = new System.Windows.Forms.Padding(0);
  499. this.panel6.Name = "panel6";
  500. this.panel6.Size = new System.Drawing.Size(105, 54);
  501. this.panel6.TabIndex = 5;
  502. //
  503. // label7
  504. //
  505. this.label7.Dock = System.Windows.Forms.DockStyle.Fill;
  506. this.label7.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
  507. this.label7.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  508. this.label7.Location = new System.Drawing.Point(0, 0);
  509. this.label7.Name = "label7";
  510. this.label7.Size = new System.Drawing.Size(104, 53);
  511. this.label7.TabIndex = 3;
  512. this.label7.Tag = "6";
  513. this.label7.Text = "6";
  514. this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  515. this.label7.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Num_MouseDown);
  516. //
  517. // ucSplitLine_H6
  518. //
  519. this.ucSplitLine_H6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  520. this.ucSplitLine_H6.Dock = System.Windows.Forms.DockStyle.Bottom;
  521. this.ucSplitLine_H6.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  522. this.ucSplitLine_H6.Location = new System.Drawing.Point(0, 53);
  523. this.ucSplitLine_H6.Name = "ucSplitLine_H6";
  524. this.ucSplitLine_H6.Size = new System.Drawing.Size(104, 1);
  525. this.ucSplitLine_H6.TabIndex = 1;
  526. this.ucSplitLine_H6.TabStop = false;
  527. //
  528. // ucSplitLine_V6
  529. //
  530. this.ucSplitLine_V6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  531. this.ucSplitLine_V6.Dock = System.Windows.Forms.DockStyle.Right;
  532. this.ucSplitLine_V6.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  533. this.ucSplitLine_V6.Location = new System.Drawing.Point(104, 0);
  534. this.ucSplitLine_V6.Name = "ucSplitLine_V6";
  535. this.ucSplitLine_V6.Size = new System.Drawing.Size(1, 54);
  536. this.ucSplitLine_V6.TabIndex = 0;
  537. this.ucSplitLine_V6.TabStop = false;
  538. //
  539. // panel5
  540. //
  541. this.panel5.Controls.Add(this.label3);
  542. this.panel5.Controls.Add(this.ucSplitLine_H5);
  543. this.panel5.Controls.Add(this.ucSplitLine_V5);
  544. this.panel5.Dock = System.Windows.Forms.DockStyle.Fill;
  545. this.panel5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  546. this.panel5.Location = new System.Drawing.Point(210, 0);
  547. this.panel5.Margin = new System.Windows.Forms.Padding(0);
  548. this.panel5.Name = "panel5";
  549. this.panel5.Size = new System.Drawing.Size(105, 54);
  550. this.panel5.TabIndex = 4;
  551. //
  552. // label3
  553. //
  554. this.label3.Dock = System.Windows.Forms.DockStyle.Fill;
  555. this.label3.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
  556. this.label3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  557. this.label3.Location = new System.Drawing.Point(0, 0);
  558. this.label3.Name = "label3";
  559. this.label3.Size = new System.Drawing.Size(104, 53);
  560. this.label3.TabIndex = 3;
  561. this.label3.Tag = "3";
  562. this.label3.Text = "3";
  563. this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  564. this.label3.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Num_MouseDown);
  565. //
  566. // ucSplitLine_H5
  567. //
  568. this.ucSplitLine_H5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  569. this.ucSplitLine_H5.Dock = System.Windows.Forms.DockStyle.Bottom;
  570. this.ucSplitLine_H5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  571. this.ucSplitLine_H5.Location = new System.Drawing.Point(0, 53);
  572. this.ucSplitLine_H5.Name = "ucSplitLine_H5";
  573. this.ucSplitLine_H5.Size = new System.Drawing.Size(104, 1);
  574. this.ucSplitLine_H5.TabIndex = 1;
  575. this.ucSplitLine_H5.TabStop = false;
  576. //
  577. // ucSplitLine_V5
  578. //
  579. this.ucSplitLine_V5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  580. this.ucSplitLine_V5.Dock = System.Windows.Forms.DockStyle.Right;
  581. this.ucSplitLine_V5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  582. this.ucSplitLine_V5.Location = new System.Drawing.Point(104, 0);
  583. this.ucSplitLine_V5.Name = "ucSplitLine_V5";
  584. this.ucSplitLine_V5.Size = new System.Drawing.Size(1, 54);
  585. this.ucSplitLine_V5.TabIndex = 0;
  586. this.ucSplitLine_V5.TabStop = false;
  587. //
  588. // panel4
  589. //
  590. this.panel4.Controls.Add(this.label5);
  591. this.panel4.Controls.Add(this.ucSplitLine_H4);
  592. this.panel4.Controls.Add(this.ucSplitLine_V4);
  593. this.panel4.Dock = System.Windows.Forms.DockStyle.Fill;
  594. this.panel4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  595. this.panel4.Location = new System.Drawing.Point(0, 54);
  596. this.panel4.Margin = new System.Windows.Forms.Padding(0);
  597. this.panel4.Name = "panel4";
  598. this.panel4.Size = new System.Drawing.Size(105, 54);
  599. this.panel4.TabIndex = 3;
  600. //
  601. // label5
  602. //
  603. this.label5.Dock = System.Windows.Forms.DockStyle.Fill;
  604. this.label5.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
  605. this.label5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  606. this.label5.Location = new System.Drawing.Point(0, 0);
  607. this.label5.Name = "label5";
  608. this.label5.Size = new System.Drawing.Size(104, 53);
  609. this.label5.TabIndex = 3;
  610. this.label5.Tag = "4";
  611. this.label5.Text = "4";
  612. this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  613. this.label5.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Num_MouseDown);
  614. //
  615. // ucSplitLine_H4
  616. //
  617. this.ucSplitLine_H4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  618. this.ucSplitLine_H4.Dock = System.Windows.Forms.DockStyle.Bottom;
  619. this.ucSplitLine_H4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  620. this.ucSplitLine_H4.Location = new System.Drawing.Point(0, 53);
  621. this.ucSplitLine_H4.Name = "ucSplitLine_H4";
  622. this.ucSplitLine_H4.Size = new System.Drawing.Size(104, 1);
  623. this.ucSplitLine_H4.TabIndex = 1;
  624. this.ucSplitLine_H4.TabStop = false;
  625. //
  626. // ucSplitLine_V4
  627. //
  628. this.ucSplitLine_V4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  629. this.ucSplitLine_V4.Dock = System.Windows.Forms.DockStyle.Right;
  630. this.ucSplitLine_V4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  631. this.ucSplitLine_V4.Location = new System.Drawing.Point(104, 0);
  632. this.ucSplitLine_V4.Name = "ucSplitLine_V4";
  633. this.ucSplitLine_V4.Size = new System.Drawing.Size(1, 54);
  634. this.ucSplitLine_V4.TabIndex = 0;
  635. this.ucSplitLine_V4.TabStop = false;
  636. //
  637. // panel3
  638. //
  639. this.panel3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(122)))), ((int)(((byte)(122)))), ((int)(((byte)(122)))));
  640. this.panel3.Controls.Add(this.label4);
  641. this.panel3.Controls.Add(this.ucSplitLine_H3);
  642. this.panel3.Dock = System.Windows.Forms.DockStyle.Fill;
  643. this.panel3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  644. this.panel3.Location = new System.Drawing.Point(315, 0);
  645. this.panel3.Margin = new System.Windows.Forms.Padding(0);
  646. this.panel3.Name = "panel3";
  647. this.panel3.Size = new System.Drawing.Size(107, 54);
  648. this.panel3.TabIndex = 2;
  649. //
  650. // label4
  651. //
  652. this.label4.BackColor = System.Drawing.Color.White;
  653. this.label4.Dock = System.Windows.Forms.DockStyle.Fill;
  654. this.label4.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
  655. this.label4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  656. this.label4.Image = global::HZH_Controls.Properties.Resources.keyboard_bs;
  657. this.label4.Location = new System.Drawing.Point(0, 0);
  658. this.label4.Name = "label4";
  659. this.label4.Size = new System.Drawing.Size(107, 53);
  660. this.label4.TabIndex = 3;
  661. this.label4.Tag = "{BACKSPACE}";
  662. this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  663. this.label4.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Backspace_MouseDown);
  664. //
  665. // ucSplitLine_H3
  666. //
  667. this.ucSplitLine_H3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  668. this.ucSplitLine_H3.Dock = System.Windows.Forms.DockStyle.Bottom;
  669. this.ucSplitLine_H3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  670. this.ucSplitLine_H3.Location = new System.Drawing.Point(0, 53);
  671. this.ucSplitLine_H3.Name = "ucSplitLine_H3";
  672. this.ucSplitLine_H3.Size = new System.Drawing.Size(107, 1);
  673. this.ucSplitLine_H3.TabIndex = 1;
  674. this.ucSplitLine_H3.TabStop = false;
  675. //
  676. // panel2
  677. //
  678. this.panel2.Controls.Add(this.label2);
  679. this.panel2.Controls.Add(this.ucSplitLine_H2);
  680. this.panel2.Controls.Add(this.ucSplitLine_V2);
  681. this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
  682. this.panel2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  683. this.panel2.Location = new System.Drawing.Point(105, 0);
  684. this.panel2.Margin = new System.Windows.Forms.Padding(0);
  685. this.panel2.Name = "panel2";
  686. this.panel2.Size = new System.Drawing.Size(105, 54);
  687. this.panel2.TabIndex = 1;
  688. //
  689. // label2
  690. //
  691. this.label2.Dock = System.Windows.Forms.DockStyle.Fill;
  692. this.label2.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
  693. this.label2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  694. this.label2.Location = new System.Drawing.Point(0, 0);
  695. this.label2.Name = "label2";
  696. this.label2.Size = new System.Drawing.Size(104, 53);
  697. this.label2.TabIndex = 3;
  698. this.label2.Tag = "2";
  699. this.label2.Text = "2";
  700. this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  701. this.label2.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Num_MouseDown);
  702. //
  703. // ucSplitLine_H2
  704. //
  705. this.ucSplitLine_H2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  706. this.ucSplitLine_H2.Dock = System.Windows.Forms.DockStyle.Bottom;
  707. this.ucSplitLine_H2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  708. this.ucSplitLine_H2.Location = new System.Drawing.Point(0, 53);
  709. this.ucSplitLine_H2.Name = "ucSplitLine_H2";
  710. this.ucSplitLine_H2.Size = new System.Drawing.Size(104, 1);
  711. this.ucSplitLine_H2.TabIndex = 1;
  712. this.ucSplitLine_H2.TabStop = false;
  713. //
  714. // ucSplitLine_V2
  715. //
  716. this.ucSplitLine_V2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  717. this.ucSplitLine_V2.Dock = System.Windows.Forms.DockStyle.Right;
  718. this.ucSplitLine_V2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  719. this.ucSplitLine_V2.Location = new System.Drawing.Point(104, 0);
  720. this.ucSplitLine_V2.Name = "ucSplitLine_V2";
  721. this.ucSplitLine_V2.Size = new System.Drawing.Size(1, 54);
  722. this.ucSplitLine_V2.TabIndex = 0;
  723. this.ucSplitLine_V2.TabStop = false;
  724. //
  725. // panel1
  726. //
  727. this.panel1.Controls.Add(this.label1);
  728. this.panel1.Controls.Add(this.ucSplitLine_H1);
  729. this.panel1.Controls.Add(this.ucSplitLine_V1);
  730. this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
  731. this.panel1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  732. this.panel1.Location = new System.Drawing.Point(0, 0);
  733. this.panel1.Margin = new System.Windows.Forms.Padding(0);
  734. this.panel1.Name = "panel1";
  735. this.panel1.Size = new System.Drawing.Size(105, 54);
  736. this.panel1.TabIndex = 0;
  737. //
  738. // label1
  739. //
  740. this.label1.Dock = System.Windows.Forms.DockStyle.Fill;
  741. this.label1.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
  742. this.label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  743. this.label1.Location = new System.Drawing.Point(0, 0);
  744. this.label1.Name = "label1";
  745. this.label1.Size = new System.Drawing.Size(104, 53);
  746. this.label1.TabIndex = 2;
  747. this.label1.Tag = "1";
  748. this.label1.Text = "1";
  749. this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  750. this.label1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Num_MouseDown);
  751. //
  752. // ucSplitLine_H1
  753. //
  754. this.ucSplitLine_H1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  755. this.ucSplitLine_H1.Dock = System.Windows.Forms.DockStyle.Bottom;
  756. this.ucSplitLine_H1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  757. this.ucSplitLine_H1.Location = new System.Drawing.Point(0, 53);
  758. this.ucSplitLine_H1.Name = "ucSplitLine_H1";
  759. this.ucSplitLine_H1.Size = new System.Drawing.Size(104, 1);
  760. this.ucSplitLine_H1.TabIndex = 1;
  761. this.ucSplitLine_H1.TabStop = false;
  762. //
  763. // ucSplitLine_V1
  764. //
  765. this.ucSplitLine_V1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  766. this.ucSplitLine_V1.Dock = System.Windows.Forms.DockStyle.Right;
  767. this.ucSplitLine_V1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  768. this.ucSplitLine_V1.Location = new System.Drawing.Point(104, 0);
  769. this.ucSplitLine_V1.Name = "ucSplitLine_V1";
  770. this.ucSplitLine_V1.Size = new System.Drawing.Size(1, 54);
  771. this.ucSplitLine_V1.TabIndex = 0;
  772. this.ucSplitLine_V1.TabStop = false;
  773. //
  774. // ucSplitLine_V3
  775. //
  776. this.ucSplitLine_V3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  777. this.ucSplitLine_V3.Dock = System.Windows.Forms.DockStyle.Right;
  778. this.ucSplitLine_V3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  779. this.ucSplitLine_V3.Location = new System.Drawing.Point(423, 0);
  780. this.ucSplitLine_V3.Name = "ucSplitLine_V3";
  781. this.ucSplitLine_V3.Size = new System.Drawing.Size(1, 218);
  782. this.ucSplitLine_V3.TabIndex = 1;
  783. this.ucSplitLine_V3.TabStop = false;
  784. //
  785. // ucSplitLine_V7
  786. //
  787. this.ucSplitLine_V7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  788. this.ucSplitLine_V7.Dock = System.Windows.Forms.DockStyle.Left;
  789. this.ucSplitLine_V7.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  790. this.ucSplitLine_V7.Location = new System.Drawing.Point(0, 0);
  791. this.ucSplitLine_V7.Name = "ucSplitLine_V7";
  792. this.ucSplitLine_V7.Size = new System.Drawing.Size(1, 218);
  793. this.ucSplitLine_V7.TabIndex = 2;
  794. this.ucSplitLine_V7.TabStop = false;
  795. //
  796. // ucSplitLine_H7
  797. //
  798. this.ucSplitLine_H7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  799. this.ucSplitLine_H7.Dock = System.Windows.Forms.DockStyle.Bottom;
  800. this.ucSplitLine_H7.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  801. this.ucSplitLine_H7.Location = new System.Drawing.Point(1, 217);
  802. this.ucSplitLine_H7.Name = "ucSplitLine_H7";
  803. this.ucSplitLine_H7.Size = new System.Drawing.Size(422, 1);
  804. this.ucSplitLine_H7.TabIndex = 3;
  805. this.ucSplitLine_H7.TabStop = false;
  806. //
  807. // ucSplitLine_H12
  808. //
  809. this.ucSplitLine_H12.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  810. this.ucSplitLine_H12.Dock = System.Windows.Forms.DockStyle.Top;
  811. this.ucSplitLine_H12.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  812. this.ucSplitLine_H12.Location = new System.Drawing.Point(1, 0);
  813. this.ucSplitLine_H12.Name = "ucSplitLine_H12";
  814. this.ucSplitLine_H12.Size = new System.Drawing.Size(422, 1);
  815. this.ucSplitLine_H12.TabIndex = 4;
  816. this.ucSplitLine_H12.TabStop = false;
  817. //
  818. // UCKeyBorderNum
  819. //
  820. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  821. this.BackColor = System.Drawing.Color.White;
  822. this.Controls.Add(this.tableLayoutPanel1);
  823. this.Controls.Add(this.ucSplitLine_H12);
  824. this.Controls.Add(this.ucSplitLine_H7);
  825. this.Controls.Add(this.ucSplitLine_V7);
  826. this.Controls.Add(this.ucSplitLine_V3);
  827. this.Name = "UCKeyBorderNum";
  828. this.Size = new System.Drawing.Size(424, 218);
  829. this.tableLayoutPanel1.ResumeLayout(false);
  830. this.panel14.ResumeLayout(false);
  831. this.panel13.ResumeLayout(false);
  832. this.panel12.ResumeLayout(false);
  833. this.panel11.ResumeLayout(false);
  834. this.panel10.ResumeLayout(false);
  835. this.panel9.ResumeLayout(false);
  836. this.panel8.ResumeLayout(false);
  837. this.panel7.ResumeLayout(false);
  838. this.panel6.ResumeLayout(false);
  839. this.panel5.ResumeLayout(false);
  840. this.panel4.ResumeLayout(false);
  841. this.panel3.ResumeLayout(false);
  842. this.panel2.ResumeLayout(false);
  843. this.panel1.ResumeLayout(false);
  844. this.ResumeLayout(false);
  845. }
  846. #endregion
  847. /// <summary>
  848. /// The table layout panel1
  849. /// </summary>
  850. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
  851. /// <summary>
  852. /// The panel1
  853. /// </summary>
  854. private System.Windows.Forms.Panel panel1;
  855. /// <summary>
  856. /// The panel14
  857. /// </summary>
  858. private System.Windows.Forms.Panel panel14;
  859. /// <summary>
  860. /// The uc split line V14
  861. /// </summary>
  862. private UCSplitLine_V ucSplitLine_V14;
  863. /// <summary>
  864. /// The panel13
  865. /// </summary>
  866. private System.Windows.Forms.Panel panel13;
  867. /// <summary>
  868. /// The uc split line V13
  869. /// </summary>
  870. private UCSplitLine_V ucSplitLine_V13;
  871. /// <summary>
  872. /// The panel12
  873. /// </summary>
  874. private System.Windows.Forms.Panel panel12;
  875. /// <summary>
  876. /// The uc split line V12
  877. /// </summary>
  878. private UCSplitLine_V ucSplitLine_V12;
  879. /// <summary>
  880. /// The panel11
  881. /// </summary>
  882. private System.Windows.Forms.Panel panel11;
  883. /// <summary>
  884. /// The uc split line H11
  885. /// </summary>
  886. private UCSplitLine_H ucSplitLine_H11;
  887. /// <summary>
  888. /// The uc split line V11
  889. /// </summary>
  890. private UCSplitLine_V ucSplitLine_V11;
  891. /// <summary>
  892. /// The panel10
  893. /// </summary>
  894. private System.Windows.Forms.Panel panel10;
  895. /// <summary>
  896. /// The uc split line H10
  897. /// </summary>
  898. private UCSplitLine_H ucSplitLine_H10;
  899. /// <summary>
  900. /// The uc split line V10
  901. /// </summary>
  902. private UCSplitLine_V ucSplitLine_V10;
  903. /// <summary>
  904. /// The panel9
  905. /// </summary>
  906. private System.Windows.Forms.Panel panel9;
  907. /// <summary>
  908. /// The uc split line h9
  909. /// </summary>
  910. private UCSplitLine_H ucSplitLine_H9;
  911. /// <summary>
  912. /// The uc split line v9
  913. /// </summary>
  914. private UCSplitLine_V ucSplitLine_V9;
  915. /// <summary>
  916. /// The panel8
  917. /// </summary>
  918. private System.Windows.Forms.Panel panel8;
  919. /// <summary>
  920. /// The uc split line h8
  921. /// </summary>
  922. private UCSplitLine_H ucSplitLine_H8;
  923. /// <summary>
  924. /// The uc split line v8
  925. /// </summary>
  926. private UCSplitLine_V ucSplitLine_V8;
  927. /// <summary>
  928. /// The panel7
  929. /// </summary>
  930. private System.Windows.Forms.Panel panel7;
  931. /// <summary>
  932. /// The panel6
  933. /// </summary>
  934. private System.Windows.Forms.Panel panel6;
  935. /// <summary>
  936. /// The uc split line h6
  937. /// </summary>
  938. private UCSplitLine_H ucSplitLine_H6;
  939. /// <summary>
  940. /// The uc split line v6
  941. /// </summary>
  942. private UCSplitLine_V ucSplitLine_V6;
  943. /// <summary>
  944. /// The panel5
  945. /// </summary>
  946. private System.Windows.Forms.Panel panel5;
  947. /// <summary>
  948. /// The uc split line h5
  949. /// </summary>
  950. private UCSplitLine_H ucSplitLine_H5;
  951. /// <summary>
  952. /// The uc split line v5
  953. /// </summary>
  954. private UCSplitLine_V ucSplitLine_V5;
  955. /// <summary>
  956. /// The panel4
  957. /// </summary>
  958. private System.Windows.Forms.Panel panel4;
  959. /// <summary>
  960. /// The uc split line h4
  961. /// </summary>
  962. private UCSplitLine_H ucSplitLine_H4;
  963. /// <summary>
  964. /// The uc split line v4
  965. /// </summary>
  966. private UCSplitLine_V ucSplitLine_V4;
  967. /// <summary>
  968. /// The panel3
  969. /// </summary>
  970. private System.Windows.Forms.Panel panel3;
  971. /// <summary>
  972. /// The uc split line h3
  973. /// </summary>
  974. private UCSplitLine_H ucSplitLine_H3;
  975. /// <summary>
  976. /// The panel2
  977. /// </summary>
  978. private System.Windows.Forms.Panel panel2;
  979. /// <summary>
  980. /// The uc split line h2
  981. /// </summary>
  982. private UCSplitLine_H ucSplitLine_H2;
  983. /// <summary>
  984. /// The uc split line v2
  985. /// </summary>
  986. private UCSplitLine_V ucSplitLine_V2;
  987. /// <summary>
  988. /// The uc split line h1
  989. /// </summary>
  990. private UCSplitLine_H ucSplitLine_H1;
  991. /// <summary>
  992. /// The uc split line v1
  993. /// </summary>
  994. private UCSplitLine_V ucSplitLine_V1;
  995. /// <summary>
  996. /// The label11
  997. /// </summary>
  998. private System.Windows.Forms.Label label11;
  999. /// <summary>
  1000. /// The label12
  1001. /// </summary>
  1002. private System.Windows.Forms.Label label12;
  1003. /// <summary>
  1004. /// The label13
  1005. /// </summary>
  1006. private System.Windows.Forms.Label label13;
  1007. /// <summary>
  1008. /// The label10
  1009. /// </summary>
  1010. private System.Windows.Forms.Label label10;
  1011. /// <summary>
  1012. /// The label9
  1013. /// </summary>
  1014. private System.Windows.Forms.Label label9;
  1015. /// <summary>
  1016. /// The label8
  1017. /// </summary>
  1018. private System.Windows.Forms.Label label8;
  1019. /// <summary>
  1020. /// The label6
  1021. /// </summary>
  1022. private System.Windows.Forms.Label label6;
  1023. /// <summary>
  1024. /// The label14
  1025. /// </summary>
  1026. private System.Windows.Forms.Label label14;
  1027. /// <summary>
  1028. /// The label7
  1029. /// </summary>
  1030. private System.Windows.Forms.Label label7;
  1031. /// <summary>
  1032. /// The label3
  1033. /// </summary>
  1034. private System.Windows.Forms.Label label3;
  1035. /// <summary>
  1036. /// The label5
  1037. /// </summary>
  1038. private System.Windows.Forms.Label label5;
  1039. /// <summary>
  1040. /// The label4
  1041. /// </summary>
  1042. private System.Windows.Forms.Label label4;
  1043. /// <summary>
  1044. /// The label2
  1045. /// </summary>
  1046. private System.Windows.Forms.Label label2;
  1047. /// <summary>
  1048. /// The label1
  1049. /// </summary>
  1050. private System.Windows.Forms.Label label1;
  1051. /// <summary>
  1052. /// The uc split line v3
  1053. /// </summary>
  1054. private UCSplitLine_V ucSplitLine_V3;
  1055. /// <summary>
  1056. /// The uc split line v7
  1057. /// </summary>
  1058. private UCSplitLine_V ucSplitLine_V7;
  1059. /// <summary>
  1060. /// The uc split line h7
  1061. /// </summary>
  1062. private UCSplitLine_H ucSplitLine_H7;
  1063. /// <summary>
  1064. /// The uc split line H12
  1065. /// </summary>
  1066. private UCSplitLine_H ucSplitLine_H12;
  1067. }
  1068. }