UCKeyBorderPay.Designer.cs 67 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359
  1. // ***********************************************************************
  2. // Assembly : HZH_Controls
  3. // Created : 08-08-2019
  4. //
  5. // ***********************************************************************
  6. // <copyright file="UCKeyBorderPay.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 UCKeyBorderPay.
  20. /// Implements the <see cref="System.Windows.Forms.UserControl" />
  21. /// </summary>
  22. /// <seealso cref="System.Windows.Forms.UserControl" />
  23. partial class UCKeyBorderPay
  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.panel19 = new System.Windows.Forms.Panel();
  50. this.lblFast4 = new System.Windows.Forms.Label();
  51. this.ucSplitLine_V19 = new HZH_Controls.Controls.UCSplitLine_V();
  52. this.panel18 = new System.Windows.Forms.Panel();
  53. this.label18 = new System.Windows.Forms.Label();
  54. this.panel17 = new System.Windows.Forms.Panel();
  55. this.lblFast3 = new System.Windows.Forms.Label();
  56. this.ucSplitLine_H17 = new HZH_Controls.Controls.UCSplitLine_H();
  57. this.ucSplitLine_V17 = new HZH_Controls.Controls.UCSplitLine_V();
  58. this.panel16 = new System.Windows.Forms.Panel();
  59. this.label16 = new System.Windows.Forms.Label();
  60. this.ucSplitLine_H16 = new HZH_Controls.Controls.UCSplitLine_H();
  61. this.panel15 = new System.Windows.Forms.Panel();
  62. this.lblFast2 = new System.Windows.Forms.Label();
  63. this.ucSplitLine_H15 = new HZH_Controls.Controls.UCSplitLine_H();
  64. this.ucSplitLine_V15 = new HZH_Controls.Controls.UCSplitLine_V();
  65. this.panel14 = new System.Windows.Forms.Panel();
  66. this.label14 = new System.Windows.Forms.Label();
  67. this.ucSplitLine_H14 = new HZH_Controls.Controls.UCSplitLine_H();
  68. this.panel13 = new System.Windows.Forms.Panel();
  69. this.lblFast1 = new System.Windows.Forms.Label();
  70. this.ucSplitLine_H13 = new HZH_Controls.Controls.UCSplitLine_H();
  71. this.ucSplitLine_V13 = new HZH_Controls.Controls.UCSplitLine_V();
  72. this.panel12 = new System.Windows.Forms.Panel();
  73. this.label12 = new System.Windows.Forms.Label();
  74. this.ucSplitLine_V12 = new HZH_Controls.Controls.UCSplitLine_V();
  75. this.panel11 = new System.Windows.Forms.Panel();
  76. this.label11 = new System.Windows.Forms.Label();
  77. this.ucSplitLine_V11 = new HZH_Controls.Controls.UCSplitLine_V();
  78. this.panel10 = new System.Windows.Forms.Panel();
  79. this.label10 = new System.Windows.Forms.Label();
  80. this.ucSplitLine_V10 = new HZH_Controls.Controls.UCSplitLine_V();
  81. this.panel9 = new System.Windows.Forms.Panel();
  82. this.label9 = new System.Windows.Forms.Label();
  83. this.ucSplitLine_H9 = new HZH_Controls.Controls.UCSplitLine_H();
  84. this.ucSplitLine_V9 = new HZH_Controls.Controls.UCSplitLine_V();
  85. this.panel8 = new System.Windows.Forms.Panel();
  86. this.label8 = new System.Windows.Forms.Label();
  87. this.ucSplitLine_H8 = new HZH_Controls.Controls.UCSplitLine_H();
  88. this.ucSplitLine_V8 = new HZH_Controls.Controls.UCSplitLine_V();
  89. this.panel7 = new System.Windows.Forms.Panel();
  90. this.label7 = new System.Windows.Forms.Label();
  91. this.ucSplitLine_H7 = new HZH_Controls.Controls.UCSplitLine_H();
  92. this.ucSplitLine_V7 = new HZH_Controls.Controls.UCSplitLine_V();
  93. this.panel6 = new System.Windows.Forms.Panel();
  94. this.label6 = new System.Windows.Forms.Label();
  95. this.ucSplitLine_H6 = new HZH_Controls.Controls.UCSplitLine_H();
  96. this.ucSplitLine_V6 = new HZH_Controls.Controls.UCSplitLine_V();
  97. this.panel5 = new System.Windows.Forms.Panel();
  98. this.label5 = new System.Windows.Forms.Label();
  99. this.ucSplitLine_H5 = new HZH_Controls.Controls.UCSplitLine_H();
  100. this.ucSplitLine_V5 = new HZH_Controls.Controls.UCSplitLine_V();
  101. this.panel4 = new System.Windows.Forms.Panel();
  102. this.label4 = new System.Windows.Forms.Label();
  103. this.ucSplitLine_H4 = new HZH_Controls.Controls.UCSplitLine_H();
  104. this.ucSplitLine_V4 = new HZH_Controls.Controls.UCSplitLine_V();
  105. this.panel3 = new System.Windows.Forms.Panel();
  106. this.label3 = new System.Windows.Forms.Label();
  107. this.ucSplitLine_H3 = new HZH_Controls.Controls.UCSplitLine_H();
  108. this.ucSplitLine_V3 = new HZH_Controls.Controls.UCSplitLine_V();
  109. this.panel2 = new System.Windows.Forms.Panel();
  110. this.label2 = new System.Windows.Forms.Label();
  111. this.ucSplitLine_H2 = new HZH_Controls.Controls.UCSplitLine_H();
  112. this.ucSplitLine_V2 = new HZH_Controls.Controls.UCSplitLine_V();
  113. this.panel1 = new System.Windows.Forms.Panel();
  114. this.label1 = new System.Windows.Forms.Label();
  115. this.ucSplitLine_H1 = new HZH_Controls.Controls.UCSplitLine_H();
  116. this.ucSplitLine_V1 = new HZH_Controls.Controls.UCSplitLine_V();
  117. this.ucSplitLine_H11 = new HZH_Controls.Controls.UCSplitLine_H();
  118. this.ucSplitLine_H10 = new HZH_Controls.Controls.UCSplitLine_H();
  119. this.ucSplitLine_V16 = new HZH_Controls.Controls.UCSplitLine_V();
  120. this.ucSplitLine_V14 = new HZH_Controls.Controls.UCSplitLine_V();
  121. this.tableLayoutPanel1.SuspendLayout();
  122. this.panel19.SuspendLayout();
  123. this.panel18.SuspendLayout();
  124. this.panel17.SuspendLayout();
  125. this.panel16.SuspendLayout();
  126. this.panel15.SuspendLayout();
  127. this.panel14.SuspendLayout();
  128. this.panel13.SuspendLayout();
  129. this.panel12.SuspendLayout();
  130. this.panel11.SuspendLayout();
  131. this.panel10.SuspendLayout();
  132. this.panel9.SuspendLayout();
  133. this.panel8.SuspendLayout();
  134. this.panel7.SuspendLayout();
  135. this.panel6.SuspendLayout();
  136. this.panel5.SuspendLayout();
  137. this.panel4.SuspendLayout();
  138. this.panel3.SuspendLayout();
  139. this.panel2.SuspendLayout();
  140. this.panel1.SuspendLayout();
  141. this.SuspendLayout();
  142. //
  143. // tableLayoutPanel1
  144. //
  145. this.tableLayoutPanel1.BackColor = System.Drawing.Color.Transparent;
  146. this.tableLayoutPanel1.ColumnCount = 5;
  147. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 20F));
  148. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 20F));
  149. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 20F));
  150. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 20F));
  151. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 20F));
  152. this.tableLayoutPanel1.Controls.Add(this.panel19, 3, 3);
  153. this.tableLayoutPanel1.Controls.Add(this.panel18, 4, 2);
  154. this.tableLayoutPanel1.Controls.Add(this.panel17, 3, 2);
  155. this.tableLayoutPanel1.Controls.Add(this.panel16, 4, 1);
  156. this.tableLayoutPanel1.Controls.Add(this.panel15, 3, 1);
  157. this.tableLayoutPanel1.Controls.Add(this.panel14, 4, 0);
  158. this.tableLayoutPanel1.Controls.Add(this.panel13, 3, 0);
  159. this.tableLayoutPanel1.Controls.Add(this.panel12, 2, 3);
  160. this.tableLayoutPanel1.Controls.Add(this.panel11, 1, 3);
  161. this.tableLayoutPanel1.Controls.Add(this.panel10, 0, 3);
  162. this.tableLayoutPanel1.Controls.Add(this.panel9, 2, 2);
  163. this.tableLayoutPanel1.Controls.Add(this.panel8, 1, 2);
  164. this.tableLayoutPanel1.Controls.Add(this.panel7, 0, 2);
  165. this.tableLayoutPanel1.Controls.Add(this.panel6, 2, 1);
  166. this.tableLayoutPanel1.Controls.Add(this.panel5, 1, 1);
  167. this.tableLayoutPanel1.Controls.Add(this.panel4, 0, 1);
  168. this.tableLayoutPanel1.Controls.Add(this.panel3, 2, 0);
  169. this.tableLayoutPanel1.Controls.Add(this.panel2, 1, 0);
  170. this.tableLayoutPanel1.Controls.Add(this.panel1, 0, 0);
  171. this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  172. this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
  173. this.tableLayoutPanel1.Name = "tableLayoutPanel1";
  174. this.tableLayoutPanel1.RowCount = 4;
  175. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
  176. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
  177. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
  178. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
  179. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
  180. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
  181. this.tableLayoutPanel1.Size = new System.Drawing.Size(489, 352);
  182. this.tableLayoutPanel1.TabIndex = 0;
  183. //
  184. // panel19
  185. //
  186. this.panel19.Controls.Add(this.lblFast4);
  187. this.panel19.Controls.Add(this.ucSplitLine_V19);
  188. this.panel19.Dock = System.Windows.Forms.DockStyle.Fill;
  189. this.panel19.Location = new System.Drawing.Point(291, 264);
  190. this.panel19.Margin = new System.Windows.Forms.Padding(0);
  191. this.panel19.Name = "panel19";
  192. this.panel19.Size = new System.Drawing.Size(97, 88);
  193. this.panel19.TabIndex = 19;
  194. //
  195. // lblFast4
  196. //
  197. this.lblFast4.BackColor = System.Drawing.Color.White;
  198. this.lblFast4.Dock = System.Windows.Forms.DockStyle.Fill;
  199. this.lblFast4.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
  200. this.lblFast4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
  201. this.lblFast4.Location = new System.Drawing.Point(0, 0);
  202. this.lblFast4.Name = "lblFast4";
  203. this.lblFast4.Size = new System.Drawing.Size(96, 88);
  204. this.lblFast4.TabIndex = 2;
  205. this.lblFast4.Tag = "";
  206. this.lblFast4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  207. this.lblFast4.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Money_MouseDown);
  208. //
  209. // ucSplitLine_V19
  210. //
  211. this.ucSplitLine_V19.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  212. this.ucSplitLine_V19.Dock = System.Windows.Forms.DockStyle.Right;
  213. this.ucSplitLine_V19.Location = new System.Drawing.Point(96, 0);
  214. this.ucSplitLine_V19.Name = "ucSplitLine_V19";
  215. this.ucSplitLine_V19.Size = new System.Drawing.Size(1, 88);
  216. this.ucSplitLine_V19.TabIndex = 0;
  217. this.ucSplitLine_V19.TabStop = false;
  218. //
  219. // panel18
  220. //
  221. this.panel18.Controls.Add(this.label18);
  222. this.panel18.Dock = System.Windows.Forms.DockStyle.Fill;
  223. this.panel18.Location = new System.Drawing.Point(388, 176);
  224. this.panel18.Margin = new System.Windows.Forms.Padding(0);
  225. this.panel18.Name = "panel18";
  226. this.tableLayoutPanel1.SetRowSpan(this.panel18, 2);
  227. this.panel18.Size = new System.Drawing.Size(101, 176);
  228. this.panel18.TabIndex = 18;
  229. //
  230. // label18
  231. //
  232. this.label18.BackColor = System.Drawing.Color.White;
  233. this.label18.Dock = System.Windows.Forms.DockStyle.Fill;
  234. this.label18.Font = new System.Drawing.Font("微软雅黑", 20F);
  235. this.label18.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  236. this.label18.Location = new System.Drawing.Point(0, 0);
  237. this.label18.Name = "label18";
  238. this.label18.Size = new System.Drawing.Size(101, 176);
  239. this.label18.TabIndex = 2;
  240. this.label18.Tag = "确定";
  241. this.label18.Text = "确\r\n定";
  242. this.label18.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  243. this.label18.MouseDown += new System.Windows.Forms.MouseEventHandler(this.OK_MouseDown);
  244. //
  245. // panel17
  246. //
  247. this.panel17.Controls.Add(this.lblFast3);
  248. this.panel17.Controls.Add(this.ucSplitLine_H17);
  249. this.panel17.Controls.Add(this.ucSplitLine_V17);
  250. this.panel17.Dock = System.Windows.Forms.DockStyle.Fill;
  251. this.panel17.Location = new System.Drawing.Point(291, 176);
  252. this.panel17.Margin = new System.Windows.Forms.Padding(0);
  253. this.panel17.Name = "panel17";
  254. this.panel17.Size = new System.Drawing.Size(97, 88);
  255. this.panel17.TabIndex = 17;
  256. //
  257. // lblFast3
  258. //
  259. this.lblFast3.BackColor = System.Drawing.Color.White;
  260. this.lblFast3.Dock = System.Windows.Forms.DockStyle.Fill;
  261. this.lblFast3.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
  262. this.lblFast3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
  263. this.lblFast3.Location = new System.Drawing.Point(0, 0);
  264. this.lblFast3.Name = "lblFast3";
  265. this.lblFast3.Size = new System.Drawing.Size(96, 87);
  266. this.lblFast3.TabIndex = 2;
  267. this.lblFast3.Tag = "";
  268. this.lblFast3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  269. this.lblFast3.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Money_MouseDown);
  270. //
  271. // ucSplitLine_H17
  272. //
  273. this.ucSplitLine_H17.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  274. this.ucSplitLine_H17.Dock = System.Windows.Forms.DockStyle.Bottom;
  275. this.ucSplitLine_H17.Location = new System.Drawing.Point(0, 87);
  276. this.ucSplitLine_H17.Name = "ucSplitLine_H17";
  277. this.ucSplitLine_H17.Size = new System.Drawing.Size(96, 1);
  278. this.ucSplitLine_H17.TabIndex = 1;
  279. this.ucSplitLine_H17.TabStop = false;
  280. //
  281. // ucSplitLine_V17
  282. //
  283. this.ucSplitLine_V17.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  284. this.ucSplitLine_V17.Dock = System.Windows.Forms.DockStyle.Right;
  285. this.ucSplitLine_V17.Location = new System.Drawing.Point(96, 0);
  286. this.ucSplitLine_V17.Name = "ucSplitLine_V17";
  287. this.ucSplitLine_V17.Size = new System.Drawing.Size(1, 88);
  288. this.ucSplitLine_V17.TabIndex = 0;
  289. this.ucSplitLine_V17.TabStop = false;
  290. //
  291. // panel16
  292. //
  293. this.panel16.Controls.Add(this.label16);
  294. this.panel16.Controls.Add(this.ucSplitLine_H16);
  295. this.panel16.Dock = System.Windows.Forms.DockStyle.Fill;
  296. this.panel16.Location = new System.Drawing.Point(388, 88);
  297. this.panel16.Margin = new System.Windows.Forms.Padding(0);
  298. this.panel16.Name = "panel16";
  299. this.panel16.Size = new System.Drawing.Size(101, 88);
  300. this.panel16.TabIndex = 16;
  301. //
  302. // label16
  303. //
  304. this.label16.BackColor = System.Drawing.Color.White;
  305. this.label16.Dock = System.Windows.Forms.DockStyle.Fill;
  306. this.label16.Font = new System.Drawing.Font("微软雅黑", 20F);
  307. this.label16.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  308. this.label16.Location = new System.Drawing.Point(0, 0);
  309. this.label16.Name = "label16";
  310. this.label16.Size = new System.Drawing.Size(101, 87);
  311. this.label16.TabIndex = 2;
  312. this.label16.Tag = "取消";
  313. this.label16.Text = "取消";
  314. this.label16.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  315. this.label16.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Cancel_MouseDown);
  316. //
  317. // ucSplitLine_H16
  318. //
  319. this.ucSplitLine_H16.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  320. this.ucSplitLine_H16.Dock = System.Windows.Forms.DockStyle.Bottom;
  321. this.ucSplitLine_H16.Location = new System.Drawing.Point(0, 87);
  322. this.ucSplitLine_H16.Name = "ucSplitLine_H16";
  323. this.ucSplitLine_H16.Size = new System.Drawing.Size(101, 1);
  324. this.ucSplitLine_H16.TabIndex = 1;
  325. this.ucSplitLine_H16.TabStop = false;
  326. //
  327. // panel15
  328. //
  329. this.panel15.Controls.Add(this.lblFast2);
  330. this.panel15.Controls.Add(this.ucSplitLine_H15);
  331. this.panel15.Controls.Add(this.ucSplitLine_V15);
  332. this.panel15.Dock = System.Windows.Forms.DockStyle.Fill;
  333. this.panel15.Location = new System.Drawing.Point(291, 88);
  334. this.panel15.Margin = new System.Windows.Forms.Padding(0);
  335. this.panel15.Name = "panel15";
  336. this.panel15.Size = new System.Drawing.Size(97, 88);
  337. this.panel15.TabIndex = 15;
  338. //
  339. // lblFast2
  340. //
  341. this.lblFast2.BackColor = System.Drawing.Color.White;
  342. this.lblFast2.Dock = System.Windows.Forms.DockStyle.Fill;
  343. this.lblFast2.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
  344. this.lblFast2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
  345. this.lblFast2.Location = new System.Drawing.Point(0, 0);
  346. this.lblFast2.Name = "lblFast2";
  347. this.lblFast2.Size = new System.Drawing.Size(96, 87);
  348. this.lblFast2.TabIndex = 2;
  349. this.lblFast2.Tag = "";
  350. this.lblFast2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  351. this.lblFast2.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Money_MouseDown);
  352. //
  353. // ucSplitLine_H15
  354. //
  355. this.ucSplitLine_H15.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  356. this.ucSplitLine_H15.Dock = System.Windows.Forms.DockStyle.Bottom;
  357. this.ucSplitLine_H15.Location = new System.Drawing.Point(0, 87);
  358. this.ucSplitLine_H15.Name = "ucSplitLine_H15";
  359. this.ucSplitLine_H15.Size = new System.Drawing.Size(96, 1);
  360. this.ucSplitLine_H15.TabIndex = 1;
  361. this.ucSplitLine_H15.TabStop = false;
  362. //
  363. // ucSplitLine_V15
  364. //
  365. this.ucSplitLine_V15.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  366. this.ucSplitLine_V15.Dock = System.Windows.Forms.DockStyle.Right;
  367. this.ucSplitLine_V15.Location = new System.Drawing.Point(96, 0);
  368. this.ucSplitLine_V15.Name = "ucSplitLine_V15";
  369. this.ucSplitLine_V15.Size = new System.Drawing.Size(1, 88);
  370. this.ucSplitLine_V15.TabIndex = 0;
  371. this.ucSplitLine_V15.TabStop = false;
  372. //
  373. // panel14
  374. //
  375. this.panel14.Controls.Add(this.label14);
  376. this.panel14.Controls.Add(this.ucSplitLine_H14);
  377. this.panel14.Dock = System.Windows.Forms.DockStyle.Fill;
  378. this.panel14.Location = new System.Drawing.Point(388, 0);
  379. this.panel14.Margin = new System.Windows.Forms.Padding(0);
  380. this.panel14.Name = "panel14";
  381. this.panel14.Size = new System.Drawing.Size(101, 88);
  382. this.panel14.TabIndex = 14;
  383. //
  384. // label14
  385. //
  386. this.label14.BackColor = System.Drawing.Color.White;
  387. this.label14.Dock = System.Windows.Forms.DockStyle.Fill;
  388. this.label14.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
  389. this.label14.ForeColor = System.Drawing.Color.Black;
  390. this.label14.Image = global::HZH_Controls.Properties.Resources.keyboard_bs;
  391. this.label14.Location = new System.Drawing.Point(0, 0);
  392. this.label14.Name = "label14";
  393. this.label14.Size = new System.Drawing.Size(101, 87);
  394. this.label14.TabIndex = 2;
  395. this.label14.Tag = "删除";
  396. this.label14.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  397. this.label14.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Backspace_MouseDown);
  398. //
  399. // ucSplitLine_H14
  400. //
  401. this.ucSplitLine_H14.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  402. this.ucSplitLine_H14.Dock = System.Windows.Forms.DockStyle.Bottom;
  403. this.ucSplitLine_H14.Location = new System.Drawing.Point(0, 87);
  404. this.ucSplitLine_H14.Name = "ucSplitLine_H14";
  405. this.ucSplitLine_H14.Size = new System.Drawing.Size(101, 1);
  406. this.ucSplitLine_H14.TabIndex = 1;
  407. this.ucSplitLine_H14.TabStop = false;
  408. //
  409. // panel13
  410. //
  411. this.panel13.Controls.Add(this.lblFast1);
  412. this.panel13.Controls.Add(this.ucSplitLine_H13);
  413. this.panel13.Controls.Add(this.ucSplitLine_V13);
  414. this.panel13.Dock = System.Windows.Forms.DockStyle.Fill;
  415. this.panel13.Location = new System.Drawing.Point(291, 0);
  416. this.panel13.Margin = new System.Windows.Forms.Padding(0);
  417. this.panel13.Name = "panel13";
  418. this.panel13.Size = new System.Drawing.Size(97, 88);
  419. this.panel13.TabIndex = 13;
  420. //
  421. // lblFast1
  422. //
  423. this.lblFast1.BackColor = System.Drawing.Color.White;
  424. this.lblFast1.Dock = System.Windows.Forms.DockStyle.Fill;
  425. this.lblFast1.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
  426. this.lblFast1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
  427. this.lblFast1.Location = new System.Drawing.Point(0, 0);
  428. this.lblFast1.Name = "lblFast1";
  429. this.lblFast1.Size = new System.Drawing.Size(96, 87);
  430. this.lblFast1.TabIndex = 2;
  431. this.lblFast1.Tag = "";
  432. this.lblFast1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  433. this.lblFast1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Money_MouseDown);
  434. //
  435. // ucSplitLine_H13
  436. //
  437. this.ucSplitLine_H13.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  438. this.ucSplitLine_H13.Dock = System.Windows.Forms.DockStyle.Bottom;
  439. this.ucSplitLine_H13.Location = new System.Drawing.Point(0, 87);
  440. this.ucSplitLine_H13.Name = "ucSplitLine_H13";
  441. this.ucSplitLine_H13.Size = new System.Drawing.Size(96, 1);
  442. this.ucSplitLine_H13.TabIndex = 1;
  443. this.ucSplitLine_H13.TabStop = false;
  444. //
  445. // ucSplitLine_V13
  446. //
  447. this.ucSplitLine_V13.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  448. this.ucSplitLine_V13.Dock = System.Windows.Forms.DockStyle.Right;
  449. this.ucSplitLine_V13.Location = new System.Drawing.Point(96, 0);
  450. this.ucSplitLine_V13.Name = "ucSplitLine_V13";
  451. this.ucSplitLine_V13.Size = new System.Drawing.Size(1, 88);
  452. this.ucSplitLine_V13.TabIndex = 0;
  453. this.ucSplitLine_V13.TabStop = false;
  454. //
  455. // panel12
  456. //
  457. this.panel12.Controls.Add(this.label12);
  458. this.panel12.Controls.Add(this.ucSplitLine_V12);
  459. this.panel12.Dock = System.Windows.Forms.DockStyle.Fill;
  460. this.panel12.Location = new System.Drawing.Point(194, 264);
  461. this.panel12.Margin = new System.Windows.Forms.Padding(0);
  462. this.panel12.Name = "panel12";
  463. this.panel12.Size = new System.Drawing.Size(97, 88);
  464. this.panel12.TabIndex = 12;
  465. //
  466. // label12
  467. //
  468. this.label12.BackColor = System.Drawing.Color.White;
  469. this.label12.Dock = System.Windows.Forms.DockStyle.Fill;
  470. this.label12.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
  471. this.label12.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  472. this.label12.Location = new System.Drawing.Point(0, 0);
  473. this.label12.Name = "label12";
  474. this.label12.Size = new System.Drawing.Size(96, 88);
  475. this.label12.TabIndex = 2;
  476. this.label12.Tag = ".";
  477. this.label12.Text = ".";
  478. this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  479. this.label12.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Num_MouseDown);
  480. //
  481. // ucSplitLine_V12
  482. //
  483. this.ucSplitLine_V12.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  484. this.ucSplitLine_V12.Dock = System.Windows.Forms.DockStyle.Right;
  485. this.ucSplitLine_V12.Location = new System.Drawing.Point(96, 0);
  486. this.ucSplitLine_V12.Name = "ucSplitLine_V12";
  487. this.ucSplitLine_V12.Size = new System.Drawing.Size(1, 88);
  488. this.ucSplitLine_V12.TabIndex = 0;
  489. this.ucSplitLine_V12.TabStop = false;
  490. //
  491. // panel11
  492. //
  493. this.panel11.Controls.Add(this.label11);
  494. this.panel11.Controls.Add(this.ucSplitLine_V11);
  495. this.panel11.Dock = System.Windows.Forms.DockStyle.Fill;
  496. this.panel11.Location = new System.Drawing.Point(97, 264);
  497. this.panel11.Margin = new System.Windows.Forms.Padding(0);
  498. this.panel11.Name = "panel11";
  499. this.panel11.Size = new System.Drawing.Size(97, 88);
  500. this.panel11.TabIndex = 11;
  501. //
  502. // label11
  503. //
  504. this.label11.BackColor = System.Drawing.Color.White;
  505. this.label11.Dock = System.Windows.Forms.DockStyle.Fill;
  506. this.label11.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
  507. this.label11.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  508. this.label11.Location = new System.Drawing.Point(0, 0);
  509. this.label11.Name = "label11";
  510. this.label11.Size = new System.Drawing.Size(96, 88);
  511. this.label11.TabIndex = 2;
  512. this.label11.Tag = "0";
  513. this.label11.Text = "0";
  514. this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  515. this.label11.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Num_MouseDown);
  516. //
  517. // ucSplitLine_V11
  518. //
  519. this.ucSplitLine_V11.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  520. this.ucSplitLine_V11.Dock = System.Windows.Forms.DockStyle.Right;
  521. this.ucSplitLine_V11.Location = new System.Drawing.Point(96, 0);
  522. this.ucSplitLine_V11.Name = "ucSplitLine_V11";
  523. this.ucSplitLine_V11.Size = new System.Drawing.Size(1, 88);
  524. this.ucSplitLine_V11.TabIndex = 0;
  525. this.ucSplitLine_V11.TabStop = false;
  526. //
  527. // panel10
  528. //
  529. this.panel10.Controls.Add(this.label10);
  530. this.panel10.Controls.Add(this.ucSplitLine_V10);
  531. this.panel10.Dock = System.Windows.Forms.DockStyle.Fill;
  532. this.panel10.Location = new System.Drawing.Point(0, 264);
  533. this.panel10.Margin = new System.Windows.Forms.Padding(0);
  534. this.panel10.Name = "panel10";
  535. this.panel10.Size = new System.Drawing.Size(97, 88);
  536. this.panel10.TabIndex = 10;
  537. //
  538. // label10
  539. //
  540. this.label10.BackColor = System.Drawing.Color.White;
  541. this.label10.Dock = System.Windows.Forms.DockStyle.Fill;
  542. this.label10.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
  543. this.label10.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  544. this.label10.Location = new System.Drawing.Point(0, 0);
  545. this.label10.Name = "label10";
  546. this.label10.Size = new System.Drawing.Size(96, 88);
  547. this.label10.TabIndex = 2;
  548. this.label10.Tag = "-";
  549. this.label10.Text = "-";
  550. this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  551. this.label10.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Num_MouseDown);
  552. //
  553. // ucSplitLine_V10
  554. //
  555. this.ucSplitLine_V10.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  556. this.ucSplitLine_V10.Dock = System.Windows.Forms.DockStyle.Right;
  557. this.ucSplitLine_V10.Location = new System.Drawing.Point(96, 0);
  558. this.ucSplitLine_V10.Name = "ucSplitLine_V10";
  559. this.ucSplitLine_V10.Size = new System.Drawing.Size(1, 88);
  560. this.ucSplitLine_V10.TabIndex = 0;
  561. this.ucSplitLine_V10.TabStop = false;
  562. //
  563. // panel9
  564. //
  565. this.panel9.Controls.Add(this.label9);
  566. this.panel9.Controls.Add(this.ucSplitLine_H9);
  567. this.panel9.Controls.Add(this.ucSplitLine_V9);
  568. this.panel9.Dock = System.Windows.Forms.DockStyle.Fill;
  569. this.panel9.Location = new System.Drawing.Point(194, 176);
  570. this.panel9.Margin = new System.Windows.Forms.Padding(0);
  571. this.panel9.Name = "panel9";
  572. this.panel9.Size = new System.Drawing.Size(97, 88);
  573. this.panel9.TabIndex = 9;
  574. //
  575. // label9
  576. //
  577. this.label9.BackColor = System.Drawing.Color.White;
  578. this.label9.Dock = System.Windows.Forms.DockStyle.Fill;
  579. this.label9.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
  580. this.label9.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  581. this.label9.Location = new System.Drawing.Point(0, 0);
  582. this.label9.Name = "label9";
  583. this.label9.Size = new System.Drawing.Size(96, 87);
  584. this.label9.TabIndex = 2;
  585. this.label9.Tag = "9";
  586. this.label9.Text = "9";
  587. this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  588. this.label9.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Num_MouseDown);
  589. //
  590. // ucSplitLine_H9
  591. //
  592. this.ucSplitLine_H9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  593. this.ucSplitLine_H9.Dock = System.Windows.Forms.DockStyle.Bottom;
  594. this.ucSplitLine_H9.Location = new System.Drawing.Point(0, 87);
  595. this.ucSplitLine_H9.Name = "ucSplitLine_H9";
  596. this.ucSplitLine_H9.Size = new System.Drawing.Size(96, 1);
  597. this.ucSplitLine_H9.TabIndex = 1;
  598. this.ucSplitLine_H9.TabStop = false;
  599. //
  600. // ucSplitLine_V9
  601. //
  602. this.ucSplitLine_V9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  603. this.ucSplitLine_V9.Dock = System.Windows.Forms.DockStyle.Right;
  604. this.ucSplitLine_V9.Location = new System.Drawing.Point(96, 0);
  605. this.ucSplitLine_V9.Name = "ucSplitLine_V9";
  606. this.ucSplitLine_V9.Size = new System.Drawing.Size(1, 88);
  607. this.ucSplitLine_V9.TabIndex = 0;
  608. this.ucSplitLine_V9.TabStop = false;
  609. //
  610. // panel8
  611. //
  612. this.panel8.Controls.Add(this.label8);
  613. this.panel8.Controls.Add(this.ucSplitLine_H8);
  614. this.panel8.Controls.Add(this.ucSplitLine_V8);
  615. this.panel8.Dock = System.Windows.Forms.DockStyle.Fill;
  616. this.panel8.Location = new System.Drawing.Point(97, 176);
  617. this.panel8.Margin = new System.Windows.Forms.Padding(0);
  618. this.panel8.Name = "panel8";
  619. this.panel8.Size = new System.Drawing.Size(97, 88);
  620. this.panel8.TabIndex = 8;
  621. //
  622. // label8
  623. //
  624. this.label8.BackColor = System.Drawing.Color.White;
  625. this.label8.Dock = System.Windows.Forms.DockStyle.Fill;
  626. this.label8.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
  627. this.label8.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  628. this.label8.Location = new System.Drawing.Point(0, 0);
  629. this.label8.Name = "label8";
  630. this.label8.Size = new System.Drawing.Size(96, 87);
  631. this.label8.TabIndex = 2;
  632. this.label8.Tag = "8";
  633. this.label8.Text = "8";
  634. this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  635. this.label8.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Num_MouseDown);
  636. //
  637. // ucSplitLine_H8
  638. //
  639. this.ucSplitLine_H8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  640. this.ucSplitLine_H8.Dock = System.Windows.Forms.DockStyle.Bottom;
  641. this.ucSplitLine_H8.Location = new System.Drawing.Point(0, 87);
  642. this.ucSplitLine_H8.Name = "ucSplitLine_H8";
  643. this.ucSplitLine_H8.Size = new System.Drawing.Size(96, 1);
  644. this.ucSplitLine_H8.TabIndex = 1;
  645. this.ucSplitLine_H8.TabStop = false;
  646. //
  647. // ucSplitLine_V8
  648. //
  649. this.ucSplitLine_V8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  650. this.ucSplitLine_V8.Dock = System.Windows.Forms.DockStyle.Right;
  651. this.ucSplitLine_V8.Location = new System.Drawing.Point(96, 0);
  652. this.ucSplitLine_V8.Name = "ucSplitLine_V8";
  653. this.ucSplitLine_V8.Size = new System.Drawing.Size(1, 88);
  654. this.ucSplitLine_V8.TabIndex = 0;
  655. this.ucSplitLine_V8.TabStop = false;
  656. //
  657. // panel7
  658. //
  659. this.panel7.Controls.Add(this.label7);
  660. this.panel7.Controls.Add(this.ucSplitLine_H7);
  661. this.panel7.Controls.Add(this.ucSplitLine_V7);
  662. this.panel7.Dock = System.Windows.Forms.DockStyle.Fill;
  663. this.panel7.Location = new System.Drawing.Point(0, 176);
  664. this.panel7.Margin = new System.Windows.Forms.Padding(0);
  665. this.panel7.Name = "panel7";
  666. this.panel7.Size = new System.Drawing.Size(97, 88);
  667. this.panel7.TabIndex = 7;
  668. //
  669. // label7
  670. //
  671. this.label7.BackColor = System.Drawing.Color.White;
  672. this.label7.Dock = System.Windows.Forms.DockStyle.Fill;
  673. this.label7.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
  674. this.label7.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  675. this.label7.Location = new System.Drawing.Point(0, 0);
  676. this.label7.Name = "label7";
  677. this.label7.Size = new System.Drawing.Size(96, 87);
  678. this.label7.TabIndex = 2;
  679. this.label7.Tag = "7";
  680. this.label7.Text = "7";
  681. this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  682. this.label7.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Num_MouseDown);
  683. //
  684. // ucSplitLine_H7
  685. //
  686. this.ucSplitLine_H7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  687. this.ucSplitLine_H7.Dock = System.Windows.Forms.DockStyle.Bottom;
  688. this.ucSplitLine_H7.Location = new System.Drawing.Point(0, 87);
  689. this.ucSplitLine_H7.Name = "ucSplitLine_H7";
  690. this.ucSplitLine_H7.Size = new System.Drawing.Size(96, 1);
  691. this.ucSplitLine_H7.TabIndex = 1;
  692. this.ucSplitLine_H7.TabStop = false;
  693. //
  694. // ucSplitLine_V7
  695. //
  696. this.ucSplitLine_V7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  697. this.ucSplitLine_V7.Dock = System.Windows.Forms.DockStyle.Right;
  698. this.ucSplitLine_V7.Location = new System.Drawing.Point(96, 0);
  699. this.ucSplitLine_V7.Name = "ucSplitLine_V7";
  700. this.ucSplitLine_V7.Size = new System.Drawing.Size(1, 88);
  701. this.ucSplitLine_V7.TabIndex = 0;
  702. this.ucSplitLine_V7.TabStop = false;
  703. //
  704. // panel6
  705. //
  706. this.panel6.Controls.Add(this.label6);
  707. this.panel6.Controls.Add(this.ucSplitLine_H6);
  708. this.panel6.Controls.Add(this.ucSplitLine_V6);
  709. this.panel6.Dock = System.Windows.Forms.DockStyle.Fill;
  710. this.panel6.Location = new System.Drawing.Point(194, 88);
  711. this.panel6.Margin = new System.Windows.Forms.Padding(0);
  712. this.panel6.Name = "panel6";
  713. this.panel6.Size = new System.Drawing.Size(97, 88);
  714. this.panel6.TabIndex = 6;
  715. //
  716. // label6
  717. //
  718. this.label6.BackColor = System.Drawing.Color.White;
  719. this.label6.Dock = System.Windows.Forms.DockStyle.Fill;
  720. this.label6.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
  721. this.label6.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  722. this.label6.Location = new System.Drawing.Point(0, 0);
  723. this.label6.Name = "label6";
  724. this.label6.Size = new System.Drawing.Size(96, 87);
  725. this.label6.TabIndex = 2;
  726. this.label6.Tag = "6";
  727. this.label6.Text = "6";
  728. this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  729. this.label6.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Num_MouseDown);
  730. //
  731. // ucSplitLine_H6
  732. //
  733. this.ucSplitLine_H6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  734. this.ucSplitLine_H6.Dock = System.Windows.Forms.DockStyle.Bottom;
  735. this.ucSplitLine_H6.Location = new System.Drawing.Point(0, 87);
  736. this.ucSplitLine_H6.Name = "ucSplitLine_H6";
  737. this.ucSplitLine_H6.Size = new System.Drawing.Size(96, 1);
  738. this.ucSplitLine_H6.TabIndex = 1;
  739. this.ucSplitLine_H6.TabStop = false;
  740. //
  741. // ucSplitLine_V6
  742. //
  743. this.ucSplitLine_V6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  744. this.ucSplitLine_V6.Dock = System.Windows.Forms.DockStyle.Right;
  745. this.ucSplitLine_V6.Location = new System.Drawing.Point(96, 0);
  746. this.ucSplitLine_V6.Name = "ucSplitLine_V6";
  747. this.ucSplitLine_V6.Size = new System.Drawing.Size(1, 88);
  748. this.ucSplitLine_V6.TabIndex = 0;
  749. this.ucSplitLine_V6.TabStop = false;
  750. //
  751. // panel5
  752. //
  753. this.panel5.Controls.Add(this.label5);
  754. this.panel5.Controls.Add(this.ucSplitLine_H5);
  755. this.panel5.Controls.Add(this.ucSplitLine_V5);
  756. this.panel5.Dock = System.Windows.Forms.DockStyle.Fill;
  757. this.panel5.Location = new System.Drawing.Point(97, 88);
  758. this.panel5.Margin = new System.Windows.Forms.Padding(0);
  759. this.panel5.Name = "panel5";
  760. this.panel5.Size = new System.Drawing.Size(97, 88);
  761. this.panel5.TabIndex = 5;
  762. //
  763. // label5
  764. //
  765. this.label5.BackColor = System.Drawing.Color.White;
  766. this.label5.Dock = System.Windows.Forms.DockStyle.Fill;
  767. this.label5.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
  768. this.label5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  769. this.label5.Location = new System.Drawing.Point(0, 0);
  770. this.label5.Name = "label5";
  771. this.label5.Size = new System.Drawing.Size(96, 87);
  772. this.label5.TabIndex = 2;
  773. this.label5.Tag = "5";
  774. this.label5.Text = "5";
  775. this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  776. this.label5.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Num_MouseDown);
  777. //
  778. // ucSplitLine_H5
  779. //
  780. this.ucSplitLine_H5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  781. this.ucSplitLine_H5.Dock = System.Windows.Forms.DockStyle.Bottom;
  782. this.ucSplitLine_H5.Location = new System.Drawing.Point(0, 87);
  783. this.ucSplitLine_H5.Name = "ucSplitLine_H5";
  784. this.ucSplitLine_H5.Size = new System.Drawing.Size(96, 1);
  785. this.ucSplitLine_H5.TabIndex = 1;
  786. this.ucSplitLine_H5.TabStop = false;
  787. //
  788. // ucSplitLine_V5
  789. //
  790. this.ucSplitLine_V5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  791. this.ucSplitLine_V5.Dock = System.Windows.Forms.DockStyle.Right;
  792. this.ucSplitLine_V5.Location = new System.Drawing.Point(96, 0);
  793. this.ucSplitLine_V5.Name = "ucSplitLine_V5";
  794. this.ucSplitLine_V5.Size = new System.Drawing.Size(1, 88);
  795. this.ucSplitLine_V5.TabIndex = 0;
  796. this.ucSplitLine_V5.TabStop = false;
  797. //
  798. // panel4
  799. //
  800. this.panel4.Controls.Add(this.label4);
  801. this.panel4.Controls.Add(this.ucSplitLine_H4);
  802. this.panel4.Controls.Add(this.ucSplitLine_V4);
  803. this.panel4.Dock = System.Windows.Forms.DockStyle.Fill;
  804. this.panel4.Location = new System.Drawing.Point(0, 88);
  805. this.panel4.Margin = new System.Windows.Forms.Padding(0);
  806. this.panel4.Name = "panel4";
  807. this.panel4.Size = new System.Drawing.Size(97, 88);
  808. this.panel4.TabIndex = 4;
  809. //
  810. // label4
  811. //
  812. this.label4.BackColor = System.Drawing.Color.White;
  813. this.label4.Dock = System.Windows.Forms.DockStyle.Fill;
  814. this.label4.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
  815. this.label4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  816. this.label4.Location = new System.Drawing.Point(0, 0);
  817. this.label4.Name = "label4";
  818. this.label4.Size = new System.Drawing.Size(96, 87);
  819. this.label4.TabIndex = 2;
  820. this.label4.Tag = "4";
  821. this.label4.Text = "4";
  822. this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  823. this.label4.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Num_MouseDown);
  824. //
  825. // ucSplitLine_H4
  826. //
  827. this.ucSplitLine_H4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  828. this.ucSplitLine_H4.Dock = System.Windows.Forms.DockStyle.Bottom;
  829. this.ucSplitLine_H4.Location = new System.Drawing.Point(0, 87);
  830. this.ucSplitLine_H4.Name = "ucSplitLine_H4";
  831. this.ucSplitLine_H4.Size = new System.Drawing.Size(96, 1);
  832. this.ucSplitLine_H4.TabIndex = 1;
  833. this.ucSplitLine_H4.TabStop = false;
  834. //
  835. // ucSplitLine_V4
  836. //
  837. this.ucSplitLine_V4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  838. this.ucSplitLine_V4.Dock = System.Windows.Forms.DockStyle.Right;
  839. this.ucSplitLine_V4.Location = new System.Drawing.Point(96, 0);
  840. this.ucSplitLine_V4.Name = "ucSplitLine_V4";
  841. this.ucSplitLine_V4.Size = new System.Drawing.Size(1, 88);
  842. this.ucSplitLine_V4.TabIndex = 0;
  843. this.ucSplitLine_V4.TabStop = false;
  844. //
  845. // panel3
  846. //
  847. this.panel3.Controls.Add(this.label3);
  848. this.panel3.Controls.Add(this.ucSplitLine_H3);
  849. this.panel3.Controls.Add(this.ucSplitLine_V3);
  850. this.panel3.Dock = System.Windows.Forms.DockStyle.Fill;
  851. this.panel3.Location = new System.Drawing.Point(194, 0);
  852. this.panel3.Margin = new System.Windows.Forms.Padding(0);
  853. this.panel3.Name = "panel3";
  854. this.panel3.Size = new System.Drawing.Size(97, 88);
  855. this.panel3.TabIndex = 3;
  856. //
  857. // label3
  858. //
  859. this.label3.BackColor = System.Drawing.Color.White;
  860. this.label3.Dock = System.Windows.Forms.DockStyle.Fill;
  861. this.label3.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
  862. this.label3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  863. this.label3.Location = new System.Drawing.Point(0, 0);
  864. this.label3.Name = "label3";
  865. this.label3.Size = new System.Drawing.Size(96, 87);
  866. this.label3.TabIndex = 2;
  867. this.label3.Tag = "3";
  868. this.label3.Text = "3";
  869. this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  870. this.label3.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Num_MouseDown);
  871. //
  872. // ucSplitLine_H3
  873. //
  874. this.ucSplitLine_H3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  875. this.ucSplitLine_H3.Dock = System.Windows.Forms.DockStyle.Bottom;
  876. this.ucSplitLine_H3.Location = new System.Drawing.Point(0, 87);
  877. this.ucSplitLine_H3.Name = "ucSplitLine_H3";
  878. this.ucSplitLine_H3.Size = new System.Drawing.Size(96, 1);
  879. this.ucSplitLine_H3.TabIndex = 1;
  880. this.ucSplitLine_H3.TabStop = false;
  881. //
  882. // ucSplitLine_V3
  883. //
  884. this.ucSplitLine_V3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  885. this.ucSplitLine_V3.Dock = System.Windows.Forms.DockStyle.Right;
  886. this.ucSplitLine_V3.Location = new System.Drawing.Point(96, 0);
  887. this.ucSplitLine_V3.Name = "ucSplitLine_V3";
  888. this.ucSplitLine_V3.Size = new System.Drawing.Size(1, 88);
  889. this.ucSplitLine_V3.TabIndex = 0;
  890. this.ucSplitLine_V3.TabStop = false;
  891. //
  892. // panel2
  893. //
  894. this.panel2.Controls.Add(this.label2);
  895. this.panel2.Controls.Add(this.ucSplitLine_H2);
  896. this.panel2.Controls.Add(this.ucSplitLine_V2);
  897. this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
  898. this.panel2.Location = new System.Drawing.Point(97, 0);
  899. this.panel2.Margin = new System.Windows.Forms.Padding(0);
  900. this.panel2.Name = "panel2";
  901. this.panel2.Size = new System.Drawing.Size(97, 88);
  902. this.panel2.TabIndex = 2;
  903. //
  904. // label2
  905. //
  906. this.label2.BackColor = System.Drawing.Color.White;
  907. this.label2.Dock = System.Windows.Forms.DockStyle.Fill;
  908. this.label2.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
  909. this.label2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  910. this.label2.Location = new System.Drawing.Point(0, 0);
  911. this.label2.Name = "label2";
  912. this.label2.Size = new System.Drawing.Size(96, 87);
  913. this.label2.TabIndex = 2;
  914. this.label2.Tag = "2";
  915. this.label2.Text = "2";
  916. this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  917. this.label2.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Num_MouseDown);
  918. //
  919. // ucSplitLine_H2
  920. //
  921. this.ucSplitLine_H2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  922. this.ucSplitLine_H2.Dock = System.Windows.Forms.DockStyle.Bottom;
  923. this.ucSplitLine_H2.Location = new System.Drawing.Point(0, 87);
  924. this.ucSplitLine_H2.Name = "ucSplitLine_H2";
  925. this.ucSplitLine_H2.Size = new System.Drawing.Size(96, 1);
  926. this.ucSplitLine_H2.TabIndex = 1;
  927. this.ucSplitLine_H2.TabStop = false;
  928. //
  929. // ucSplitLine_V2
  930. //
  931. this.ucSplitLine_V2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  932. this.ucSplitLine_V2.Dock = System.Windows.Forms.DockStyle.Right;
  933. this.ucSplitLine_V2.Location = new System.Drawing.Point(96, 0);
  934. this.ucSplitLine_V2.Name = "ucSplitLine_V2";
  935. this.ucSplitLine_V2.Size = new System.Drawing.Size(1, 88);
  936. this.ucSplitLine_V2.TabIndex = 0;
  937. this.ucSplitLine_V2.TabStop = false;
  938. //
  939. // panel1
  940. //
  941. this.panel1.Controls.Add(this.label1);
  942. this.panel1.Controls.Add(this.ucSplitLine_H1);
  943. this.panel1.Controls.Add(this.ucSplitLine_V1);
  944. this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
  945. this.panel1.Location = new System.Drawing.Point(0, 0);
  946. this.panel1.Margin = new System.Windows.Forms.Padding(0);
  947. this.panel1.Name = "panel1";
  948. this.panel1.Size = new System.Drawing.Size(97, 88);
  949. this.panel1.TabIndex = 1;
  950. //
  951. // label1
  952. //
  953. this.label1.BackColor = System.Drawing.Color.White;
  954. this.label1.Dock = System.Windows.Forms.DockStyle.Fill;
  955. this.label1.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
  956. this.label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
  957. this.label1.Location = new System.Drawing.Point(0, 0);
  958. this.label1.Name = "label1";
  959. this.label1.Size = new System.Drawing.Size(96, 87);
  960. this.label1.TabIndex = 2;
  961. this.label1.Tag = "1";
  962. this.label1.Text = "1";
  963. this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  964. this.label1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Num_MouseDown);
  965. //
  966. // ucSplitLine_H1
  967. //
  968. this.ucSplitLine_H1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  969. this.ucSplitLine_H1.Dock = System.Windows.Forms.DockStyle.Bottom;
  970. this.ucSplitLine_H1.Location = new System.Drawing.Point(0, 87);
  971. this.ucSplitLine_H1.Name = "ucSplitLine_H1";
  972. this.ucSplitLine_H1.Size = new System.Drawing.Size(96, 1);
  973. this.ucSplitLine_H1.TabIndex = 1;
  974. this.ucSplitLine_H1.TabStop = false;
  975. //
  976. // ucSplitLine_V1
  977. //
  978. this.ucSplitLine_V1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  979. this.ucSplitLine_V1.Dock = System.Windows.Forms.DockStyle.Right;
  980. this.ucSplitLine_V1.Location = new System.Drawing.Point(96, 0);
  981. this.ucSplitLine_V1.Name = "ucSplitLine_V1";
  982. this.ucSplitLine_V1.Size = new System.Drawing.Size(1, 88);
  983. this.ucSplitLine_V1.TabIndex = 0;
  984. this.ucSplitLine_V1.TabStop = false;
  985. //
  986. // ucSplitLine_H11
  987. //
  988. this.ucSplitLine_H11.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  989. this.ucSplitLine_H11.Dock = System.Windows.Forms.DockStyle.Bottom;
  990. this.ucSplitLine_H11.Location = new System.Drawing.Point(1, 351);
  991. this.ucSplitLine_H11.Name = "ucSplitLine_H11";
  992. this.ucSplitLine_H11.Size = new System.Drawing.Size(487, 1);
  993. this.ucSplitLine_H11.TabIndex = 5;
  994. this.ucSplitLine_H11.TabStop = false;
  995. //
  996. // ucSplitLine_H10
  997. //
  998. this.ucSplitLine_H10.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  999. this.ucSplitLine_H10.Dock = System.Windows.Forms.DockStyle.Top;
  1000. this.ucSplitLine_H10.Location = new System.Drawing.Point(1, 0);
  1001. this.ucSplitLine_H10.Name = "ucSplitLine_H10";
  1002. this.ucSplitLine_H10.Size = new System.Drawing.Size(487, 1);
  1003. this.ucSplitLine_H10.TabIndex = 3;
  1004. this.ucSplitLine_H10.TabStop = false;
  1005. //
  1006. // ucSplitLine_V16
  1007. //
  1008. this.ucSplitLine_V16.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  1009. this.ucSplitLine_V16.Dock = System.Windows.Forms.DockStyle.Right;
  1010. this.ucSplitLine_V16.Location = new System.Drawing.Point(488, 0);
  1011. this.ucSplitLine_V16.Name = "ucSplitLine_V16";
  1012. this.ucSplitLine_V16.Size = new System.Drawing.Size(1, 352);
  1013. this.ucSplitLine_V16.TabIndex = 4;
  1014. this.ucSplitLine_V16.TabStop = false;
  1015. //
  1016. // ucSplitLine_V14
  1017. //
  1018. this.ucSplitLine_V14.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  1019. this.ucSplitLine_V14.Dock = System.Windows.Forms.DockStyle.Left;
  1020. this.ucSplitLine_V14.Location = new System.Drawing.Point(0, 0);
  1021. this.ucSplitLine_V14.Name = "ucSplitLine_V14";
  1022. this.ucSplitLine_V14.Size = new System.Drawing.Size(1, 352);
  1023. this.ucSplitLine_V14.TabIndex = 3;
  1024. this.ucSplitLine_V14.TabStop = false;
  1025. //
  1026. // UCKeyBorderPay
  1027. //
  1028. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  1029. this.BackColor = System.Drawing.Color.Transparent;
  1030. this.Controls.Add(this.ucSplitLine_H11);
  1031. this.Controls.Add(this.ucSplitLine_H10);
  1032. this.Controls.Add(this.ucSplitLine_V16);
  1033. this.Controls.Add(this.ucSplitLine_V14);
  1034. this.Controls.Add(this.tableLayoutPanel1);
  1035. this.Name = "UCKeyBorderPay";
  1036. this.Size = new System.Drawing.Size(489, 352);
  1037. this.tableLayoutPanel1.ResumeLayout(false);
  1038. this.panel19.ResumeLayout(false);
  1039. this.panel18.ResumeLayout(false);
  1040. this.panel17.ResumeLayout(false);
  1041. this.panel16.ResumeLayout(false);
  1042. this.panel15.ResumeLayout(false);
  1043. this.panel14.ResumeLayout(false);
  1044. this.panel13.ResumeLayout(false);
  1045. this.panel12.ResumeLayout(false);
  1046. this.panel11.ResumeLayout(false);
  1047. this.panel10.ResumeLayout(false);
  1048. this.panel9.ResumeLayout(false);
  1049. this.panel8.ResumeLayout(false);
  1050. this.panel7.ResumeLayout(false);
  1051. this.panel6.ResumeLayout(false);
  1052. this.panel5.ResumeLayout(false);
  1053. this.panel4.ResumeLayout(false);
  1054. this.panel3.ResumeLayout(false);
  1055. this.panel2.ResumeLayout(false);
  1056. this.panel1.ResumeLayout(false);
  1057. this.ResumeLayout(false);
  1058. }
  1059. #endregion
  1060. /// <summary>
  1061. /// The table layout panel1
  1062. /// </summary>
  1063. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
  1064. /// <summary>
  1065. /// The panel19
  1066. /// </summary>
  1067. private System.Windows.Forms.Panel panel19;
  1068. /// <summary>
  1069. /// The label fast4
  1070. /// </summary>
  1071. private System.Windows.Forms.Label lblFast4;
  1072. /// <summary>
  1073. /// The uc split line V19
  1074. /// </summary>
  1075. private UCSplitLine_V ucSplitLine_V19;
  1076. /// <summary>
  1077. /// The panel18
  1078. /// </summary>
  1079. private System.Windows.Forms.Panel panel18;
  1080. /// <summary>
  1081. /// The label18
  1082. /// </summary>
  1083. private System.Windows.Forms.Label label18;
  1084. /// <summary>
  1085. /// The panel17
  1086. /// </summary>
  1087. private System.Windows.Forms.Panel panel17;
  1088. /// <summary>
  1089. /// The label fast3
  1090. /// </summary>
  1091. private System.Windows.Forms.Label lblFast3;
  1092. /// <summary>
  1093. /// The uc split line H17
  1094. /// </summary>
  1095. private UCSplitLine_H ucSplitLine_H17;
  1096. /// <summary>
  1097. /// The uc split line V17
  1098. /// </summary>
  1099. private UCSplitLine_V ucSplitLine_V17;
  1100. /// <summary>
  1101. /// The panel16
  1102. /// </summary>
  1103. private System.Windows.Forms.Panel panel16;
  1104. /// <summary>
  1105. /// The label16
  1106. /// </summary>
  1107. private System.Windows.Forms.Label label16;
  1108. /// <summary>
  1109. /// The uc split line H16
  1110. /// </summary>
  1111. private UCSplitLine_H ucSplitLine_H16;
  1112. /// <summary>
  1113. /// The panel15
  1114. /// </summary>
  1115. private System.Windows.Forms.Panel panel15;
  1116. /// <summary>
  1117. /// The label fast2
  1118. /// </summary>
  1119. private System.Windows.Forms.Label lblFast2;
  1120. /// <summary>
  1121. /// The uc split line H15
  1122. /// </summary>
  1123. private UCSplitLine_H ucSplitLine_H15;
  1124. /// <summary>
  1125. /// The uc split line V15
  1126. /// </summary>
  1127. private UCSplitLine_V ucSplitLine_V15;
  1128. /// <summary>
  1129. /// The panel14
  1130. /// </summary>
  1131. private System.Windows.Forms.Panel panel14;
  1132. /// <summary>
  1133. /// The label14
  1134. /// </summary>
  1135. private System.Windows.Forms.Label label14;
  1136. /// <summary>
  1137. /// The uc split line H14
  1138. /// </summary>
  1139. private UCSplitLine_H ucSplitLine_H14;
  1140. /// <summary>
  1141. /// The panel13
  1142. /// </summary>
  1143. private System.Windows.Forms.Panel panel13;
  1144. /// <summary>
  1145. /// The label fast1
  1146. /// </summary>
  1147. private System.Windows.Forms.Label lblFast1;
  1148. /// <summary>
  1149. /// The uc split line H13
  1150. /// </summary>
  1151. private UCSplitLine_H ucSplitLine_H13;
  1152. /// <summary>
  1153. /// The uc split line V13
  1154. /// </summary>
  1155. private UCSplitLine_V ucSplitLine_V13;
  1156. /// <summary>
  1157. /// The panel12
  1158. /// </summary>
  1159. private System.Windows.Forms.Panel panel12;
  1160. /// <summary>
  1161. /// The label12
  1162. /// </summary>
  1163. private System.Windows.Forms.Label label12;
  1164. /// <summary>
  1165. /// The uc split line V12
  1166. /// </summary>
  1167. private UCSplitLine_V ucSplitLine_V12;
  1168. /// <summary>
  1169. /// The panel11
  1170. /// </summary>
  1171. private System.Windows.Forms.Panel panel11;
  1172. /// <summary>
  1173. /// The label11
  1174. /// </summary>
  1175. private System.Windows.Forms.Label label11;
  1176. /// <summary>
  1177. /// The uc split line V11
  1178. /// </summary>
  1179. private UCSplitLine_V ucSplitLine_V11;
  1180. /// <summary>
  1181. /// The panel10
  1182. /// </summary>
  1183. private System.Windows.Forms.Panel panel10;
  1184. /// <summary>
  1185. /// The label10
  1186. /// </summary>
  1187. private System.Windows.Forms.Label label10;
  1188. /// <summary>
  1189. /// The uc split line V10
  1190. /// </summary>
  1191. private UCSplitLine_V ucSplitLine_V10;
  1192. /// <summary>
  1193. /// The panel9
  1194. /// </summary>
  1195. private System.Windows.Forms.Panel panel9;
  1196. /// <summary>
  1197. /// The label9
  1198. /// </summary>
  1199. private System.Windows.Forms.Label label9;
  1200. /// <summary>
  1201. /// The uc split line h9
  1202. /// </summary>
  1203. private UCSplitLine_H ucSplitLine_H9;
  1204. /// <summary>
  1205. /// The uc split line v9
  1206. /// </summary>
  1207. private UCSplitLine_V ucSplitLine_V9;
  1208. /// <summary>
  1209. /// The panel8
  1210. /// </summary>
  1211. private System.Windows.Forms.Panel panel8;
  1212. /// <summary>
  1213. /// The label8
  1214. /// </summary>
  1215. private System.Windows.Forms.Label label8;
  1216. /// <summary>
  1217. /// The uc split line h8
  1218. /// </summary>
  1219. private UCSplitLine_H ucSplitLine_H8;
  1220. /// <summary>
  1221. /// The uc split line v8
  1222. /// </summary>
  1223. private UCSplitLine_V ucSplitLine_V8;
  1224. /// <summary>
  1225. /// The panel7
  1226. /// </summary>
  1227. private System.Windows.Forms.Panel panel7;
  1228. /// <summary>
  1229. /// The label7
  1230. /// </summary>
  1231. private System.Windows.Forms.Label label7;
  1232. /// <summary>
  1233. /// The uc split line h7
  1234. /// </summary>
  1235. private UCSplitLine_H ucSplitLine_H7;
  1236. /// <summary>
  1237. /// The uc split line v7
  1238. /// </summary>
  1239. private UCSplitLine_V ucSplitLine_V7;
  1240. /// <summary>
  1241. /// The panel6
  1242. /// </summary>
  1243. private System.Windows.Forms.Panel panel6;
  1244. /// <summary>
  1245. /// The label6
  1246. /// </summary>
  1247. private System.Windows.Forms.Label label6;
  1248. /// <summary>
  1249. /// The uc split line h6
  1250. /// </summary>
  1251. private UCSplitLine_H ucSplitLine_H6;
  1252. /// <summary>
  1253. /// The uc split line v6
  1254. /// </summary>
  1255. private UCSplitLine_V ucSplitLine_V6;
  1256. /// <summary>
  1257. /// The panel5
  1258. /// </summary>
  1259. private System.Windows.Forms.Panel panel5;
  1260. /// <summary>
  1261. /// The label5
  1262. /// </summary>
  1263. private System.Windows.Forms.Label label5;
  1264. /// <summary>
  1265. /// The uc split line h5
  1266. /// </summary>
  1267. private UCSplitLine_H ucSplitLine_H5;
  1268. /// <summary>
  1269. /// The uc split line v5
  1270. /// </summary>
  1271. private UCSplitLine_V ucSplitLine_V5;
  1272. /// <summary>
  1273. /// The panel4
  1274. /// </summary>
  1275. private System.Windows.Forms.Panel panel4;
  1276. /// <summary>
  1277. /// The label4
  1278. /// </summary>
  1279. private System.Windows.Forms.Label label4;
  1280. /// <summary>
  1281. /// The uc split line h4
  1282. /// </summary>
  1283. private UCSplitLine_H ucSplitLine_H4;
  1284. /// <summary>
  1285. /// The uc split line v4
  1286. /// </summary>
  1287. private UCSplitLine_V ucSplitLine_V4;
  1288. /// <summary>
  1289. /// The panel3
  1290. /// </summary>
  1291. private System.Windows.Forms.Panel panel3;
  1292. /// <summary>
  1293. /// The label3
  1294. /// </summary>
  1295. private System.Windows.Forms.Label label3;
  1296. /// <summary>
  1297. /// The uc split line h3
  1298. /// </summary>
  1299. private UCSplitLine_H ucSplitLine_H3;
  1300. /// <summary>
  1301. /// The uc split line v3
  1302. /// </summary>
  1303. private UCSplitLine_V ucSplitLine_V3;
  1304. /// <summary>
  1305. /// The panel2
  1306. /// </summary>
  1307. private System.Windows.Forms.Panel panel2;
  1308. /// <summary>
  1309. /// The label2
  1310. /// </summary>
  1311. private System.Windows.Forms.Label label2;
  1312. /// <summary>
  1313. /// The uc split line h2
  1314. /// </summary>
  1315. private UCSplitLine_H ucSplitLine_H2;
  1316. /// <summary>
  1317. /// The uc split line v2
  1318. /// </summary>
  1319. private UCSplitLine_V ucSplitLine_V2;
  1320. /// <summary>
  1321. /// The panel1
  1322. /// </summary>
  1323. private System.Windows.Forms.Panel panel1;
  1324. /// <summary>
  1325. /// The label1
  1326. /// </summary>
  1327. private System.Windows.Forms.Label label1;
  1328. /// <summary>
  1329. /// The uc split line h1
  1330. /// </summary>
  1331. private UCSplitLine_H ucSplitLine_H1;
  1332. /// <summary>
  1333. /// The uc split line v1
  1334. /// </summary>
  1335. private UCSplitLine_V ucSplitLine_V1;
  1336. /// <summary>
  1337. /// The uc split line V14
  1338. /// </summary>
  1339. private UCSplitLine_V ucSplitLine_V14;
  1340. /// <summary>
  1341. /// The uc split line V16
  1342. /// </summary>
  1343. private UCSplitLine_V ucSplitLine_V16;
  1344. /// <summary>
  1345. /// The uc split line H10
  1346. /// </summary>
  1347. private UCSplitLine_H ucSplitLine_H10;
  1348. /// <summary>
  1349. /// The uc split line H11
  1350. /// </summary>
  1351. private UCSplitLine_H ucSplitLine_H11;
  1352. }
  1353. }