1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > (十五)c#Winform自定义控件-键盘(二)

(十五)c#Winform自定义控件-键盘(二)

时间:2021-08-04 12:08:09

相关推荐

(十五)c#Winform自定义控件-键盘(二)

前提

入行已经7,8年了,一直想做一套漂亮点的自定义控件,于是就有了本系列文章。

GitHub:/kwwwvagaa/NetWinformControl

码云:/kwwwvagaa/net_winform_custom_control.git

如果觉得写的还行,请点个 star 支持一下吧

欢迎前来交流探讨: 企鹅群568015492

目录

/kwwwvagaa/article/details/100586547

准备工作

键盘控件目前分为4中,英文键盘,数字键盘,支付键盘,手写键盘

键盘一般用在到文本框弹出的键盘,那么为什么到现在还没有看到文本框的影子呢?因为文本框的某些功能牵扯到了自定义窗体,所以准备在自定义窗体介绍之后再来说文本框。

本篇文章介绍数字键盘和支付键盘,手写键盘将在后面文本框控件介绍是提及到,此处不单独介绍

开始

首先来说数字键盘

添加用户控件,命名UCKeyBorderNum

全部功能代码如下,没有太多东西

1 private bool useCustomEvent = false;2 /// <summary>3 /// 是否使用自定义的事件来接收按键,当为true时将不再向系统发送按键请求4 /// </summary>5 [Description("是否使用自定义的事件来接收按键,当为true时将不再向系统发送按键请求"), Category("自定义")]6 public bool UseCustomEvent7 {8 get { return useCustomEvent; }9 set { useCustomEvent = value; }10 }11 [Description("数字点击事件"), Category("自定义")]12 public event EventHandler NumClick;13 [Description("删除点击事件"), Category("自定义")]14 public event EventHandler BackspaceClick;15 [Description("回车点击事件"), Category("自定义")]16 public event EventHandler EnterClick;17 public UCKeyBorderNum()18 {19 InitializeComponent();20 }21 22 private void Num_MouseDown(object sender, MouseEventArgs e)23 {24 if (NumClick != null)25 {26 NumClick(sender, e);27 }28 if (useCustomEvent)29 return;30 Label lbl = sender as Label;31 SendKeys.Send(lbl.Tag.ToString());32 }33 34 private void Backspace_MouseDown(object sender, MouseEventArgs e)35 {36 if (BackspaceClick != null)37 {38 BackspaceClick(sender, e);39 }40 if (useCustomEvent)41 return;42 Label lbl = sender as Label;43 SendKeys.Send("{BACKSPACE}");44 }45 46 private void Enter_MouseDown(object sender, MouseEventArgs e)47 {48 if (EnterClick != null)49 {50 EnterClick(sender, e);51 }52 if (useCustomEvent)53 return;54 SendKeys.Send("{ENTER}");55 }

看下完整代码

// 版权所有 黄正辉 交流群:568015492 QQ:623128629// 文件名称:UCKeyBorderNum.cs// 创建日期:-08-15 16:00:10// 功能描述:KeyBord// 项目地址:/kwwwvagaa/net_winform_custom_controlusing System;using System.Collections.Generic;using ponentModel;using System.Drawing;using System.Data;using System.Linq;using System.Text;using System.Windows.Forms;namespace HZH_Controls.Controls{public partial class UCKeyBorderNum : UserControl{private bool useCustomEvent = false;/// <summary>/// 是否使用自定义的事件来接收按键,当为true时将不再向系统发送按键请求/// </summary>[Description("是否使用自定义的事件来接收按键,当为true时将不再向系统发送按键请求"), Category("自定义")]public bool UseCustomEvent{get { return useCustomEvent; }set { useCustomEvent = value; }}[Description("数字点击事件"), Category("自定义")]public event EventHandler NumClick;[Description("删除点击事件"), Category("自定义")]public event EventHandler BackspaceClick;[Description("回车点击事件"), Category("自定义")]public event EventHandler EnterClick;public UCKeyBorderNum(){InitializeComponent();}private void Num_MouseDown(object sender, MouseEventArgs e){if (NumClick != null){NumClick(sender, e);}if (useCustomEvent)return;Label lbl = sender as Label;SendKeys.Send(lbl.Tag.ToString());}private void Backspace_MouseDown(object sender, MouseEventArgs e){if (BackspaceClick != null){BackspaceClick(sender, e);}if (useCustomEvent)return;Label lbl = sender as Label;SendKeys.Send("{BACKSPACE}");}private void Enter_MouseDown(object sender, MouseEventArgs e){if (EnterClick != null){EnterClick(sender, e);}if (useCustomEvent)return;SendKeys.Send("{ENTER}");}}}

namespace HZH_Controls.Controls{partial class UCKeyBorderNum{/// <summary> /// 必需的设计器变量。/// </summary>private ponentModel.IContainer components = null;/// <summary> /// 清理所有正在使用的资源。/// </summary>/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>protected override void Dispose(bool disposing){if (disposing && (components != null)){components.Dispose();}base.Dispose(disposing);}#region 组件设计器生成的代码/// <summary> /// 设计器支持所需的方法 - 不要/// 使用代码编辑器修改此方法的内容。/// </summary>private void InitializeComponent(){this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();this.panel14 = new System.Windows.Forms.Panel();this.label11 = new System.Windows.Forms.Label();this.ucSplitLine_V14 = new HZH_Controls.Controls.UCSplitLine_V();this.panel13 = new System.Windows.Forms.Panel();this.label12 = new System.Windows.Forms.Label();this.ucSplitLine_V13 = new HZH_Controls.Controls.UCSplitLine_V();this.panel12 = new System.Windows.Forms.Panel();this.label13 = new System.Windows.Forms.Label();this.ucSplitLine_V12 = new HZH_Controls.Controls.UCSplitLine_V();this.panel11 = new System.Windows.Forms.Panel();this.label10 = new System.Windows.Forms.Label();this.ucSplitLine_H11 = new HZH_Controls.Controls.UCSplitLine_H();this.ucSplitLine_V11 = new HZH_Controls.Controls.UCSplitLine_V();this.panel10 = new System.Windows.Forms.Panel();this.label9 = new System.Windows.Forms.Label();this.ucSplitLine_H10 = new HZH_Controls.Controls.UCSplitLine_H();this.ucSplitLine_V10 = new HZH_Controls.Controls.UCSplitLine_V();this.panel9 = new System.Windows.Forms.Panel();this.label8 = new System.Windows.Forms.Label();this.ucSplitLine_H9 = new HZH_Controls.Controls.UCSplitLine_H();this.ucSplitLine_V9 = new HZH_Controls.Controls.UCSplitLine_V();this.panel8 = new System.Windows.Forms.Panel();this.label6 = new System.Windows.Forms.Label();this.ucSplitLine_H8 = new HZH_Controls.Controls.UCSplitLine_H();this.ucSplitLine_V8 = new HZH_Controls.Controls.UCSplitLine_V();this.panel7 = new System.Windows.Forms.Panel();this.label14 = new System.Windows.Forms.Label();this.panel6 = new System.Windows.Forms.Panel();this.label7 = new System.Windows.Forms.Label();this.ucSplitLine_H6 = new HZH_Controls.Controls.UCSplitLine_H();this.ucSplitLine_V6 = new HZH_Controls.Controls.UCSplitLine_V();this.panel5 = new System.Windows.Forms.Panel();this.label3 = new System.Windows.Forms.Label();this.ucSplitLine_H5 = new HZH_Controls.Controls.UCSplitLine_H();this.ucSplitLine_V5 = new HZH_Controls.Controls.UCSplitLine_V();this.panel4 = new System.Windows.Forms.Panel();this.label5 = new System.Windows.Forms.Label();this.ucSplitLine_H4 = new HZH_Controls.Controls.UCSplitLine_H();this.ucSplitLine_V4 = new HZH_Controls.Controls.UCSplitLine_V();this.panel3 = new System.Windows.Forms.Panel();this.label4 = new System.Windows.Forms.Label();this.ucSplitLine_H3 = new HZH_Controls.Controls.UCSplitLine_H();this.panel2 = new System.Windows.Forms.Panel();this.label2 = new System.Windows.Forms.Label();this.ucSplitLine_H2 = new HZH_Controls.Controls.UCSplitLine_H();this.ucSplitLine_V2 = new HZH_Controls.Controls.UCSplitLine_V();this.panel1 = new System.Windows.Forms.Panel();this.label1 = new System.Windows.Forms.Label();this.ucSplitLine_H1 = new HZH_Controls.Controls.UCSplitLine_H();this.ucSplitLine_V1 = new HZH_Controls.Controls.UCSplitLine_V();this.ucSplitLine_V3 = new HZH_Controls.Controls.UCSplitLine_V();this.ucSplitLine_V7 = new HZH_Controls.Controls.UCSplitLine_V();this.ucSplitLine_H7 = new HZH_Controls.Controls.UCSplitLine_H();this.ucSplitLine_H12 = new HZH_Controls.Controls.UCSplitLine_H();this.tableLayoutPanel1.SuspendLayout();this.panel14.SuspendLayout();this.panel13.SuspendLayout();this.panel12.SuspendLayout();this.panel11.SuspendLayout();this.panel10.SuspendLayout();this.panel9.SuspendLayout();this.panel8.SuspendLayout();this.panel7.SuspendLayout();this.panel6.SuspendLayout();this.panel5.SuspendLayout();this.panel4.SuspendLayout();this.panel3.SuspendLayout();this.panel2.SuspendLayout();this.panel1.SuspendLayout();this.SuspendLayout();// // tableLayoutPanel1// this.tableLayoutPanel1.ColumnCount = 4;this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));this.tableLayoutPanel1.Controls.Add(this.panel14, 0, 3);this.tableLayoutPanel1.Controls.Add(this.panel13, 0, 3);this.tableLayoutPanel1.Controls.Add(this.panel12, 0, 3);this.tableLayoutPanel1.Controls.Add(this.panel11, 0, 2);this.tableLayoutPanel1.Controls.Add(this.panel10, 1, 2);this.tableLayoutPanel1.Controls.Add(this.panel9, 2, 2);this.tableLayoutPanel1.Controls.Add(this.panel8, 1, 1);this.tableLayoutPanel1.Controls.Add(this.panel7, 3, 1);this.tableLayoutPanel1.Controls.Add(this.panel6, 2, 1);this.tableLayoutPanel1.Controls.Add(this.panel5, 2, 0);this.tableLayoutPanel1.Controls.Add(this.panel4, 0, 1);this.tableLayoutPanel1.Controls.Add(this.panel3, 3, 0);this.tableLayoutPanel1.Controls.Add(this.panel2, 1, 0);this.tableLayoutPanel1.Controls.Add(this.panel1, 0, 0);this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;this.tableLayoutPanel1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.tableLayoutPanel1.Location = new System.Drawing.Point(1, 1);this.tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(0);this.tableLayoutPanel1.Name = "tableLayoutPanel1";this.tableLayoutPanel1.RowCount = 4;this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));this.tableLayoutPanel1.Size = new System.Drawing.Size(422, 216);this.tableLayoutPanel1.TabIndex = 0;// // panel14// this.panel14.Controls.Add(this.label11);this.panel14.Controls.Add(this.ucSplitLine_V14);this.panel14.Dock = System.Windows.Forms.DockStyle.Fill;this.panel14.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.panel14.Location = new System.Drawing.Point(0, 162);this.panel14.Margin = new System.Windows.Forms.Padding(0);this.panel14.Name = "panel14";this.panel14.Size = new System.Drawing.Size(105, 54);this.panel14.TabIndex = 13;// // label11// this.label11.Dock = System.Windows.Forms.DockStyle.Fill;this.label11.Font = new System.Drawing.Font("Arial Unicode MS", 30F);this.label11.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label11.Location = new System.Drawing.Point(0, 0);this.label11.Name = "label11";this.label11.Size = new System.Drawing.Size(104, 54);this.label11.TabIndex = 3;this.label11.Tag = "00";this.label11.Text = "00";this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;this.label11.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Num_MouseDown);// // ucSplitLine_V14// this.ucSplitLine_V14.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V14.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V14.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_V14.Location = new System.Drawing.Point(104, 0);this.ucSplitLine_V14.Name = "ucSplitLine_V14";this.ucSplitLine_V14.Size = new System.Drawing.Size(1, 54);this.ucSplitLine_V14.TabIndex = 0;this.ucSplitLine_V14.TabStop = false;// // panel13// this.panel13.Controls.Add(this.label12);this.panel13.Controls.Add(this.ucSplitLine_V13);this.panel13.Dock = System.Windows.Forms.DockStyle.Fill;this.panel13.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.panel13.Location = new System.Drawing.Point(105, 162);this.panel13.Margin = new System.Windows.Forms.Padding(0);this.panel13.Name = "panel13";this.panel13.Size = new System.Drawing.Size(105, 54);this.panel13.TabIndex = 12;// // label12// this.label12.Dock = System.Windows.Forms.DockStyle.Fill;this.label12.Font = new System.Drawing.Font("Arial Unicode MS", 30F);this.label12.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label12.Location = new System.Drawing.Point(0, 0);this.label12.Name = "label12";this.label12.Size = new System.Drawing.Size(104, 54);this.label12.TabIndex = 3;this.label12.Tag = "0";this.label12.Text = "0";this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;this.label12.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Num_MouseDown);// // ucSplitLine_V13// this.ucSplitLine_V13.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V13.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V13.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_V13.Location = new System.Drawing.Point(104, 0);this.ucSplitLine_V13.Name = "ucSplitLine_V13";this.ucSplitLine_V13.Size = new System.Drawing.Size(1, 54);this.ucSplitLine_V13.TabIndex = 0;this.ucSplitLine_V13.TabStop = false;// // panel12// this.panel12.Controls.Add(this.label13);this.panel12.Controls.Add(this.ucSplitLine_V12);this.panel12.Dock = System.Windows.Forms.DockStyle.Fill;this.panel12.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.panel12.Location = new System.Drawing.Point(210, 162);this.panel12.Margin = new System.Windows.Forms.Padding(0);this.panel12.Name = "panel12";this.panel12.Size = new System.Drawing.Size(105, 54);this.panel12.TabIndex = 11;// // label13// this.label13.Dock = System.Windows.Forms.DockStyle.Fill;this.label13.Font = new System.Drawing.Font("Arial Unicode MS", 30F);this.label13.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label13.Location = new System.Drawing.Point(0, 0);this.label13.Name = "label13";this.label13.Size = new System.Drawing.Size(104, 54);this.label13.TabIndex = 3;this.label13.Tag = ".";this.label13.Text = ".";this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;this.label13.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Num_MouseDown);// // ucSplitLine_V12// this.ucSplitLine_V12.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V12.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V12.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_V12.Location = new System.Drawing.Point(104, 0);this.ucSplitLine_V12.Name = "ucSplitLine_V12";this.ucSplitLine_V12.Size = new System.Drawing.Size(1, 54);this.ucSplitLine_V12.TabIndex = 0;this.ucSplitLine_V12.TabStop = false;// // panel11// this.panel11.Controls.Add(this.label10);this.panel11.Controls.Add(this.ucSplitLine_H11);this.panel11.Controls.Add(this.ucSplitLine_V11);this.panel11.Dock = System.Windows.Forms.DockStyle.Fill;this.panel11.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.panel11.Location = new System.Drawing.Point(0, 108);this.panel11.Margin = new System.Windows.Forms.Padding(0);this.panel11.Name = "panel11";this.panel11.Size = new System.Drawing.Size(105, 54);this.panel11.TabIndex = 10;// // label10// this.label10.Dock = System.Windows.Forms.DockStyle.Fill;this.label10.Font = new System.Drawing.Font("Arial Unicode MS", 30F);this.label10.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label10.Location = new System.Drawing.Point(0, 0);this.label10.Name = "label10";this.label10.Size = new System.Drawing.Size(104, 53);this.label10.TabIndex = 3;this.label10.Tag = "7";this.label10.Text = "7";this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;this.label10.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Num_MouseDown);// // ucSplitLine_H11// this.ucSplitLine_H11.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H11.Dock = System.Windows.Forms.DockStyle.Bottom;this.ucSplitLine_H11.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_H11.Location = new System.Drawing.Point(0, 53);this.ucSplitLine_H11.Name = "ucSplitLine_H11";this.ucSplitLine_H11.Size = new System.Drawing.Size(104, 1);this.ucSplitLine_H11.TabIndex = 1;this.ucSplitLine_H11.TabStop = false;// // ucSplitLine_V11// this.ucSplitLine_V11.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V11.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V11.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_V11.Location = new System.Drawing.Point(104, 0);this.ucSplitLine_V11.Name = "ucSplitLine_V11";this.ucSplitLine_V11.Size = new System.Drawing.Size(1, 54);this.ucSplitLine_V11.TabIndex = 0;this.ucSplitLine_V11.TabStop = false;// // panel10// this.panel10.Controls.Add(this.label9);this.panel10.Controls.Add(this.ucSplitLine_H10);this.panel10.Controls.Add(this.ucSplitLine_V10);this.panel10.Dock = System.Windows.Forms.DockStyle.Fill;this.panel10.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.panel10.Location = new System.Drawing.Point(105, 108);this.panel10.Margin = new System.Windows.Forms.Padding(0);this.panel10.Name = "panel10";this.panel10.Size = new System.Drawing.Size(105, 54);this.panel10.TabIndex = 9;// // label9// this.label9.Dock = System.Windows.Forms.DockStyle.Fill;this.label9.Font = new System.Drawing.Font("Arial Unicode MS", 30F);this.label9.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label9.Location = new System.Drawing.Point(0, 0);this.label9.Name = "label9";this.label9.Size = new System.Drawing.Size(104, 53);this.label9.TabIndex = 3;this.label9.Tag = "8";this.label9.Text = "8";this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;this.label9.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Num_MouseDown);// // ucSplitLine_H10// this.ucSplitLine_H10.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H10.Dock = System.Windows.Forms.DockStyle.Bottom;this.ucSplitLine_H10.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_H10.Location = new System.Drawing.Point(0, 53);this.ucSplitLine_H10.Name = "ucSplitLine_H10";this.ucSplitLine_H10.Size = new System.Drawing.Size(104, 1);this.ucSplitLine_H10.TabIndex = 1;this.ucSplitLine_H10.TabStop = false;// // ucSplitLine_V10// this.ucSplitLine_V10.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V10.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V10.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_V10.Location = new System.Drawing.Point(104, 0);this.ucSplitLine_V10.Name = "ucSplitLine_V10";this.ucSplitLine_V10.Size = new System.Drawing.Size(1, 54);this.ucSplitLine_V10.TabIndex = 0;this.ucSplitLine_V10.TabStop = false;// // panel9// this.panel9.Controls.Add(this.label8);this.panel9.Controls.Add(this.ucSplitLine_H9);this.panel9.Controls.Add(this.ucSplitLine_V9);this.panel9.Dock = System.Windows.Forms.DockStyle.Fill;this.panel9.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.panel9.Location = new System.Drawing.Point(210, 108);this.panel9.Margin = new System.Windows.Forms.Padding(0);this.panel9.Name = "panel9";this.panel9.Size = new System.Drawing.Size(105, 54);this.panel9.TabIndex = 8;// // label8// this.label8.Dock = System.Windows.Forms.DockStyle.Fill;this.label8.Font = new System.Drawing.Font("Arial Unicode MS", 30F);this.label8.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label8.Location = new System.Drawing.Point(0, 0);this.label8.Name = "label8";this.label8.Size = new System.Drawing.Size(104, 53);this.label8.TabIndex = 3;this.label8.Tag = "9";this.label8.Text = "9";this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;this.label8.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Num_MouseDown);// // ucSplitLine_H9// this.ucSplitLine_H9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H9.Dock = System.Windows.Forms.DockStyle.Bottom;this.ucSplitLine_H9.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_H9.Location = new System.Drawing.Point(0, 53);this.ucSplitLine_H9.Name = "ucSplitLine_H9";this.ucSplitLine_H9.Size = new System.Drawing.Size(104, 1);this.ucSplitLine_H9.TabIndex = 1;this.ucSplitLine_H9.TabStop = false;// // ucSplitLine_V9// this.ucSplitLine_V9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V9.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V9.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_V9.Location = new System.Drawing.Point(104, 0);this.ucSplitLine_V9.Name = "ucSplitLine_V9";this.ucSplitLine_V9.Size = new System.Drawing.Size(1, 54);this.ucSplitLine_V9.TabIndex = 0;this.ucSplitLine_V9.TabStop = false;// // panel8// this.panel8.Controls.Add(this.label6);this.panel8.Controls.Add(this.ucSplitLine_H8);this.panel8.Controls.Add(this.ucSplitLine_V8);this.panel8.Dock = System.Windows.Forms.DockStyle.Fill;this.panel8.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.panel8.Location = new System.Drawing.Point(105, 54);this.panel8.Margin = new System.Windows.Forms.Padding(0);this.panel8.Name = "panel8";this.panel8.Size = new System.Drawing.Size(105, 54);this.panel8.TabIndex = 7;// // label6// this.label6.Dock = System.Windows.Forms.DockStyle.Fill;this.label6.Font = new System.Drawing.Font("Arial Unicode MS", 30F);this.label6.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label6.Location = new System.Drawing.Point(0, 0);this.label6.Name = "label6";this.label6.Size = new System.Drawing.Size(104, 53);this.label6.TabIndex = 3;this.label6.Tag = "5";this.label6.Text = "5";this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;this.label6.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Num_MouseDown);// // ucSplitLine_H8// this.ucSplitLine_H8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H8.Dock = System.Windows.Forms.DockStyle.Bottom;this.ucSplitLine_H8.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_H8.Location = new System.Drawing.Point(0, 53);this.ucSplitLine_H8.Name = "ucSplitLine_H8";this.ucSplitLine_H8.Size = new System.Drawing.Size(104, 1);this.ucSplitLine_H8.TabIndex = 1;this.ucSplitLine_H8.TabStop = false;// // ucSplitLine_V8// this.ucSplitLine_V8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V8.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V8.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_V8.Location = new System.Drawing.Point(104, 0);this.ucSplitLine_V8.Name = "ucSplitLine_V8";this.ucSplitLine_V8.Size = new System.Drawing.Size(1, 54);this.ucSplitLine_V8.TabIndex = 0;this.ucSplitLine_V8.TabStop = false;// // panel7// this.panel7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(122)))), ((int)(((byte)(122)))), ((int)(((byte)(122)))));this.panel7.Controls.Add(this.label14);this.panel7.Dock = System.Windows.Forms.DockStyle.Fill;this.panel7.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.panel7.Location = new System.Drawing.Point(315, 54);this.panel7.Margin = new System.Windows.Forms.Padding(0);this.panel7.Name = "panel7";this.tableLayoutPanel1.SetRowSpan(this.panel7, 3);this.panel7.Size = new System.Drawing.Size(107, 162);this.panel7.TabIndex = 6;// // label14// this.label14.BackColor = System.Drawing.Color.White;this.label14.Dock = System.Windows.Forms.DockStyle.Fill;this.label14.Font = new System.Drawing.Font("微软雅黑", 30F);this.label14.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label14.Location = new System.Drawing.Point(0, 0);this.label14.Name = "label14";this.label14.Size = new System.Drawing.Size(107, 162);this.label14.TabIndex = 3;this.label14.Tag = "{ENTER}";this.label14.Text = "确\r\n定";this.label14.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;this.label14.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Enter_MouseDown);// // panel6// this.panel6.Controls.Add(this.label7);this.panel6.Controls.Add(this.ucSplitLine_H6);this.panel6.Controls.Add(this.ucSplitLine_V6);this.panel6.Dock = System.Windows.Forms.DockStyle.Fill;this.panel6.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.panel6.Location = new System.Drawing.Point(210, 54);this.panel6.Margin = new System.Windows.Forms.Padding(0);this.panel6.Name = "panel6";this.panel6.Size = new System.Drawing.Size(105, 54);this.panel6.TabIndex = 5;// // label7// this.label7.Dock = System.Windows.Forms.DockStyle.Fill;this.label7.Font = new System.Drawing.Font("Arial Unicode MS", 30F);this.label7.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label7.Location = new System.Drawing.Point(0, 0);this.label7.Name = "label7";this.label7.Size = new System.Drawing.Size(104, 53);this.label7.TabIndex = 3;this.label7.Tag = "6";this.label7.Text = "6";this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;this.label7.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Num_MouseDown);// // ucSplitLine_H6// this.ucSplitLine_H6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H6.Dock = System.Windows.Forms.DockStyle.Bottom;this.ucSplitLine_H6.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_H6.Location = new System.Drawing.Point(0, 53);this.ucSplitLine_H6.Name = "ucSplitLine_H6";this.ucSplitLine_H6.Size = new System.Drawing.Size(104, 1);this.ucSplitLine_H6.TabIndex = 1;this.ucSplitLine_H6.TabStop = false;// // ucSplitLine_V6// this.ucSplitLine_V6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V6.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V6.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_V6.Location = new System.Drawing.Point(104, 0);this.ucSplitLine_V6.Name = "ucSplitLine_V6";this.ucSplitLine_V6.Size = new System.Drawing.Size(1, 54);this.ucSplitLine_V6.TabIndex = 0;this.ucSplitLine_V6.TabStop = false;// // panel5// this.panel5.Controls.Add(this.label3);this.panel5.Controls.Add(this.ucSplitLine_H5);this.panel5.Controls.Add(this.ucSplitLine_V5);this.panel5.Dock = System.Windows.Forms.DockStyle.Fill;this.panel5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.panel5.Location = new System.Drawing.Point(210, 0);this.panel5.Margin = new System.Windows.Forms.Padding(0);this.panel5.Name = "panel5";this.panel5.Size = new System.Drawing.Size(105, 54);this.panel5.TabIndex = 4;// // label3// this.label3.Dock = System.Windows.Forms.DockStyle.Fill;this.label3.Font = new System.Drawing.Font("Arial Unicode MS", 30F);this.label3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label3.Location = new System.Drawing.Point(0, 0);this.label3.Name = "label3";this.label3.Size = new System.Drawing.Size(104, 53);this.label3.TabIndex = 3;this.label3.Tag = "3";this.label3.Text = "3";this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;this.label3.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Num_MouseDown);// // ucSplitLine_H5// this.ucSplitLine_H5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H5.Dock = System.Windows.Forms.DockStyle.Bottom;this.ucSplitLine_H5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_H5.Location = new System.Drawing.Point(0, 53);this.ucSplitLine_H5.Name = "ucSplitLine_H5";this.ucSplitLine_H5.Size = new System.Drawing.Size(104, 1);this.ucSplitLine_H5.TabIndex = 1;this.ucSplitLine_H5.TabStop = false;// // ucSplitLine_V5// this.ucSplitLine_V5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V5.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_V5.Location = new System.Drawing.Point(104, 0);this.ucSplitLine_V5.Name = "ucSplitLine_V5";this.ucSplitLine_V5.Size = new System.Drawing.Size(1, 54);this.ucSplitLine_V5.TabIndex = 0;this.ucSplitLine_V5.TabStop = false;// // panel4// this.panel4.Controls.Add(this.label5);this.panel4.Controls.Add(this.ucSplitLine_H4);this.panel4.Controls.Add(this.ucSplitLine_V4);this.panel4.Dock = System.Windows.Forms.DockStyle.Fill;this.panel4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.panel4.Location = new System.Drawing.Point(0, 54);this.panel4.Margin = new System.Windows.Forms.Padding(0);this.panel4.Name = "panel4";this.panel4.Size = new System.Drawing.Size(105, 54);this.panel4.TabIndex = 3;// // label5// this.label5.Dock = System.Windows.Forms.DockStyle.Fill;this.label5.Font = new System.Drawing.Font("Arial Unicode MS", 30F);this.label5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label5.Location = new System.Drawing.Point(0, 0);this.label5.Name = "label5";this.label5.Size = new System.Drawing.Size(104, 53);this.label5.TabIndex = 3;this.label5.Tag = "4";this.label5.Text = "4";this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;this.label5.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Num_MouseDown);// // ucSplitLine_H4// this.ucSplitLine_H4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H4.Dock = System.Windows.Forms.DockStyle.Bottom;this.ucSplitLine_H4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_H4.Location = new System.Drawing.Point(0, 53);this.ucSplitLine_H4.Name = "ucSplitLine_H4";this.ucSplitLine_H4.Size = new System.Drawing.Size(104, 1);this.ucSplitLine_H4.TabIndex = 1;this.ucSplitLine_H4.TabStop = false;// // ucSplitLine_V4// this.ucSplitLine_V4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V4.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_V4.Location = new System.Drawing.Point(104, 0);this.ucSplitLine_V4.Name = "ucSplitLine_V4";this.ucSplitLine_V4.Size = new System.Drawing.Size(1, 54);this.ucSplitLine_V4.TabIndex = 0;this.ucSplitLine_V4.TabStop = false;// // panel3// this.panel3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(122)))), ((int)(((byte)(122)))), ((int)(((byte)(122)))));this.panel3.Controls.Add(this.label4);this.panel3.Controls.Add(this.ucSplitLine_H3);this.panel3.Dock = System.Windows.Forms.DockStyle.Fill;this.panel3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.panel3.Location = new System.Drawing.Point(315, 0);this.panel3.Margin = new System.Windows.Forms.Padding(0);this.panel3.Name = "panel3";this.panel3.Size = new System.Drawing.Size(107, 54);this.panel3.TabIndex = 2;// // label4// this.label4.BackColor = System.Drawing.Color.White;this.label4.Dock = System.Windows.Forms.DockStyle.Fill;this.label4.Font = new System.Drawing.Font("Arial Unicode MS", 30F);this.label4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label4.Image = global::HZH_Controls.Properties.Resources.keyboard_bs;this.label4.Location = new System.Drawing.Point(0, 0);this.label4.Name = "label4";this.label4.Size = new System.Drawing.Size(107, 53);this.label4.TabIndex = 3;this.label4.Tag = "{BACKSPACE}";this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;this.label4.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Backspace_MouseDown);// // ucSplitLine_H3// this.ucSplitLine_H3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H3.Dock = System.Windows.Forms.DockStyle.Bottom;this.ucSplitLine_H3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_H3.Location = new System.Drawing.Point(0, 53);this.ucSplitLine_H3.Name = "ucSplitLine_H3";this.ucSplitLine_H3.Size = new System.Drawing.Size(107, 1);this.ucSplitLine_H3.TabIndex = 1;this.ucSplitLine_H3.TabStop = false;// // panel2// this.panel2.Controls.Add(this.label2);this.panel2.Controls.Add(this.ucSplitLine_H2);this.panel2.Controls.Add(this.ucSplitLine_V2);this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;this.panel2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.panel2.Location = new System.Drawing.Point(105, 0);this.panel2.Margin = new System.Windows.Forms.Padding(0);this.panel2.Name = "panel2";this.panel2.Size = new System.Drawing.Size(105, 54);this.panel2.TabIndex = 1;// // label2// this.label2.Dock = System.Windows.Forms.DockStyle.Fill;this.label2.Font = new System.Drawing.Font("Arial Unicode MS", 30F);this.label2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label2.Location = new System.Drawing.Point(0, 0);this.label2.Name = "label2";this.label2.Size = new System.Drawing.Size(104, 53);this.label2.TabIndex = 3;this.label2.Tag = "2";this.label2.Text = "2";this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;this.label2.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Num_MouseDown);// // ucSplitLine_H2// this.ucSplitLine_H2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H2.Dock = System.Windows.Forms.DockStyle.Bottom;this.ucSplitLine_H2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_H2.Location = new System.Drawing.Point(0, 53);this.ucSplitLine_H2.Name = "ucSplitLine_H2";this.ucSplitLine_H2.Size = new System.Drawing.Size(104, 1);this.ucSplitLine_H2.TabIndex = 1;this.ucSplitLine_H2.TabStop = false;// // ucSplitLine_V2// this.ucSplitLine_V2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V2.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_V2.Location = new System.Drawing.Point(104, 0);this.ucSplitLine_V2.Name = "ucSplitLine_V2";this.ucSplitLine_V2.Size = new System.Drawing.Size(1, 54);this.ucSplitLine_V2.TabIndex = 0;this.ucSplitLine_V2.TabStop = false;// // panel1// this.panel1.Controls.Add(this.label1);this.panel1.Controls.Add(this.ucSplitLine_H1);this.panel1.Controls.Add(this.ucSplitLine_V1);this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;this.panel1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.panel1.Location = new System.Drawing.Point(0, 0);this.panel1.Margin = new System.Windows.Forms.Padding(0);this.panel1.Name = "panel1";this.panel1.Size = new System.Drawing.Size(105, 54);this.panel1.TabIndex = 0;// // label1// this.label1.Dock = System.Windows.Forms.DockStyle.Fill;this.label1.Font = new System.Drawing.Font("Arial Unicode MS", 30F);this.label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label1.Location = new System.Drawing.Point(0, 0);this.label1.Name = "label1";this.label1.Size = new System.Drawing.Size(104, 53);this.label1.TabIndex = 2;this.label1.Tag = "1";this.label1.Text = "1";this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;this.label1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Num_MouseDown);// // ucSplitLine_H1// this.ucSplitLine_H1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H1.Dock = System.Windows.Forms.DockStyle.Bottom;this.ucSplitLine_H1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_H1.Location = new System.Drawing.Point(0, 53);this.ucSplitLine_H1.Name = "ucSplitLine_H1";this.ucSplitLine_H1.Size = new System.Drawing.Size(104, 1);this.ucSplitLine_H1.TabIndex = 1;this.ucSplitLine_H1.TabStop = false;// // ucSplitLine_V1// this.ucSplitLine_V1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V1.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_V1.Location = new System.Drawing.Point(104, 0);this.ucSplitLine_V1.Name = "ucSplitLine_V1";this.ucSplitLine_V1.Size = new System.Drawing.Size(1, 54);this.ucSplitLine_V1.TabIndex = 0;this.ucSplitLine_V1.TabStop = false;// // ucSplitLine_V3// this.ucSplitLine_V3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V3.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_V3.Location = new System.Drawing.Point(423, 0);this.ucSplitLine_V3.Name = "ucSplitLine_V3";this.ucSplitLine_V3.Size = new System.Drawing.Size(1, 218);this.ucSplitLine_V3.TabIndex = 1;this.ucSplitLine_V3.TabStop = false;// // ucSplitLine_V7// this.ucSplitLine_V7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V7.Dock = System.Windows.Forms.DockStyle.Left;this.ucSplitLine_V7.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_V7.Location = new System.Drawing.Point(0, 0);this.ucSplitLine_V7.Name = "ucSplitLine_V7";this.ucSplitLine_V7.Size = new System.Drawing.Size(1, 218);this.ucSplitLine_V7.TabIndex = 2;this.ucSplitLine_V7.TabStop = false;// // ucSplitLine_H7// this.ucSplitLine_H7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H7.Dock = System.Windows.Forms.DockStyle.Bottom;this.ucSplitLine_H7.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_H7.Location = new System.Drawing.Point(1, 217);this.ucSplitLine_H7.Name = "ucSplitLine_H7";this.ucSplitLine_H7.Size = new System.Drawing.Size(422, 1);this.ucSplitLine_H7.TabIndex = 3;this.ucSplitLine_H7.TabStop = false;// // ucSplitLine_H12// this.ucSplitLine_H12.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H12.Dock = System.Windows.Forms.DockStyle.Top;this.ucSplitLine_H12.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_H12.Location = new System.Drawing.Point(1, 0);this.ucSplitLine_H12.Name = "ucSplitLine_H12";this.ucSplitLine_H12.Size = new System.Drawing.Size(422, 1);this.ucSplitLine_H12.TabIndex = 4;this.ucSplitLine_H12.TabStop = false;// // UCKeyBorderNum// this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;this.BackColor = System.Drawing.Color.White;this.Controls.Add(this.tableLayoutPanel1);this.Controls.Add(this.ucSplitLine_H12);this.Controls.Add(this.ucSplitLine_H7);this.Controls.Add(this.ucSplitLine_V7);this.Controls.Add(this.ucSplitLine_V3);this.Name = "UCKeyBorderNum";this.Size = new System.Drawing.Size(424, 218);this.tableLayoutPanel1.ResumeLayout(false);this.panel14.ResumeLayout(false);this.panel13.ResumeLayout(false);this.panel12.ResumeLayout(false);this.panel11.ResumeLayout(false);this.panel10.ResumeLayout(false);this.panel9.ResumeLayout(false);this.panel8.ResumeLayout(false);this.panel7.ResumeLayout(false);this.panel6.ResumeLayout(false);this.panel5.ResumeLayout(false);this.panel4.ResumeLayout(false);this.panel3.ResumeLayout(false);this.panel2.ResumeLayout(false);this.panel1.ResumeLayout(false);this.ResumeLayout(false);}#endregionprivate System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;private System.Windows.Forms.Panel panel1;private System.Windows.Forms.Panel panel14;private UCSplitLine_V ucSplitLine_V14;private System.Windows.Forms.Panel panel13;private UCSplitLine_V ucSplitLine_V13;private System.Windows.Forms.Panel panel12;private UCSplitLine_V ucSplitLine_V12;private System.Windows.Forms.Panel panel11;private UCSplitLine_H ucSplitLine_H11;private UCSplitLine_V ucSplitLine_V11;private System.Windows.Forms.Panel panel10;private UCSplitLine_H ucSplitLine_H10;private UCSplitLine_V ucSplitLine_V10;private System.Windows.Forms.Panel panel9;private UCSplitLine_H ucSplitLine_H9;private UCSplitLine_V ucSplitLine_V9;private System.Windows.Forms.Panel panel8;private UCSplitLine_H ucSplitLine_H8;private UCSplitLine_V ucSplitLine_V8;private System.Windows.Forms.Panel panel7;private System.Windows.Forms.Panel panel6;private UCSplitLine_H ucSplitLine_H6;private UCSplitLine_V ucSplitLine_V6;private System.Windows.Forms.Panel panel5;private UCSplitLine_H ucSplitLine_H5;private UCSplitLine_V ucSplitLine_V5;private System.Windows.Forms.Panel panel4;private UCSplitLine_H ucSplitLine_H4;private UCSplitLine_V ucSplitLine_V4;private System.Windows.Forms.Panel panel3;private UCSplitLine_H ucSplitLine_H3;private System.Windows.Forms.Panel panel2;private UCSplitLine_H ucSplitLine_H2;private UCSplitLine_V ucSplitLine_V2;private UCSplitLine_H ucSplitLine_H1;private UCSplitLine_V ucSplitLine_V1;private System.Windows.Forms.Label label11;private System.Windows.Forms.Label label12;private System.Windows.Forms.Label label13;private System.Windows.Forms.Label label10;private System.Windows.Forms.Label label9;private System.Windows.Forms.Label label8;private System.Windows.Forms.Label label6;private System.Windows.Forms.Label label14;private System.Windows.Forms.Label label7;private System.Windows.Forms.Label label3;private System.Windows.Forms.Label label5;private System.Windows.Forms.Label label4;private System.Windows.Forms.Label label2;private System.Windows.Forms.Label label1;private UCSplitLine_V ucSplitLine_V3;private UCSplitLine_V ucSplitLine_V7;private UCSplitLine_H ucSplitLine_H7;private UCSplitLine_H ucSplitLine_H12;}}

设计效果

下面说支付键盘,这个可能就比较小众的键盘了,支持根据输入金额自动计算可能付款金额

添加用户控件,命名UCKeyBorderPay

同样的东西不多,主要的就一个计算预估付款金额

[Description("数字点击事件"), Category("自定义")]public event EventHandler NumClick;[Description("取消点击事件"), Category("自定义")]public event EventHandler CancelClick;[Description("确定点击事件"), Category("自定义")]public event EventHandler OKClick;[Description("删除点击事件"), Category("自定义")]public event EventHandler BackspaceClick;[Description("金额点击事件"), Category("自定义")]public event EventHandler MoneyClick;public UCKeyBorderPay(){InitializeComponent();}#region 设置快速付款金额/// <summary>/// 功能描述:设置快速付款金额/// 作者:HZH/// 创建日期:-03-07 11:41:04/// 任务编号:POS/// </summary>/// <param name="SorceMoney">SorceMoney</param>public void SetPayMoney(decimal SorceMoney){List<decimal> list = new List<decimal>();decimal d = Math.Ceiling(SorceMoney);if (SorceMoney > 0m){if (SorceMoney < 5m){list.Add(5m);list.Add(10m);list.Add(20m);list.Add(50m);}else if (SorceMoney < 10m){list.Add(10m);list.Add(20m);list.Add(50m);list.Add(100m);}else{int num = Convert.ToInt32(d % 10m);int num2 = Convert.ToInt32(Math.Floor(d / 10m) % 10m);int num3 = Convert.ToInt32(Math.Floor(d / 100m));int num4;if (num < 5){num4 = num2 * 10 + 5;list.Add(num4 + num3 * 100);num4 = (num2 + 1) * 10;list.Add(num4 + num3 * 100);}else{num4 = (num2 + 1) * 10;list.Add(num4 + num3 * 100);}if (num4 >= 0 && num4 < 10){num4 = 10;if (list.Count < 4){list.Add(num4 + num3 * 100);}num4 = 20;if (list.Count < 4){list.Add(num4 + num3 * 100);}num4 = 50;if (list.Count < 4){list.Add(num4 + num3 * 100);}num4 = 100;if (list.Count < 4){list.Add(num4 + num3 * 100);}}else if (num4 >= 10 && num4 < 20){num4 = 20;if (list.Count < 4){list.Add(num4 + num3 * 100);}num4 = 50;if (list.Count < 4){list.Add(num4 + num3 * 100);}num4 = 100;if (list.Count < 4){list.Add(num4 + num3 * 100);}}else if (num4 >= 20 && num4 < 50){num4 = 50;if (list.Count < 4){list.Add(num4 + num3 * 100);}num4 = 100;if (list.Count < 4){list.Add(num4 + num3 * 100);}}else if (num4 < 100){num4 = 100;if (list.Count < 4){list.Add(num4 + num3 * 100);}}}}SetFastMoneyToContrl(list);}#endregionprivate void SetFastMoneyToContrl(List<decimal> values){List<Label> lbl = new List<Label>() { lblFast1, lblFast2, lblFast3, lblFast4 };lblFast1.Tag = lblFast1.Text = "";lblFast2.Tag = lblFast2.Text = "";lblFast3.Tag = lblFast3.Text = "";lblFast4.Tag = lblFast4.Text = "";for (int i = 0; i < lbl.Count && i < values.Count; i++){if (values[i].ToString("0.##").Length < 4){lbl[i].Font = new System.Drawing.Font("Arial Unicode MS", 30F);}else{Graphics graphics = lbl[i].CreateGraphics();for (int j = 0; j < 5; j++){SizeF sizeF = graphics.MeasureString(values[i].ToString("0.##"), new System.Drawing.Font("Arial Unicode MS", 30 - j * 5), 100, StringFormat.GenericTypographic);if (sizeF.Width <= lbl[i].Width - 20){lbl[i].Font = new System.Drawing.Font("Arial Unicode MS", 30 - j * 5);break;}}graphics.Dispose();}lbl[i].Tag = lbl[i].Text = values[i].ToString("0.##");}}private void Num_MouseDown(object sender, MouseEventArgs e){if (NumClick != null)NumClick((sender as Label).Tag, e);}private void Backspace_MouseDown(object sender, MouseEventArgs e){if (BackspaceClick != null)BackspaceClick((sender as Label).Tag, e);}private void Cancel_MouseDown(object sender, MouseEventArgs e){if (CancelClick != null)CancelClick((sender as Label).Tag, e);}private void OK_MouseDown(object sender, MouseEventArgs e){if (OKClick != null)OKClick((sender as Label).Tag, e);}private void Money_MouseDown(object sender, MouseEventArgs e){if (MoneyClick != null)MoneyClick((sender as Label).Tag, e);}public void Money1Click(){Money_MouseDown(lblFast1, null);}public void Money2Click(){Money_MouseDown(lblFast2, null);}public void Money3Click(){Money_MouseDown(lblFast3, null);}public void Money4Click(){Money_MouseDown(lblFast4, null);}

下面看下完整代码

// 版权所有 黄正辉 交流群:568015492 QQ:623128629// 文件名称:UCKeyBorderPay.cs// 创建日期:-08-15 16:00:14// 功能描述:KeyBord// 项目地址:/kwwwvagaa/net_winform_custom_controlusing System;using System.Collections.Generic;using ponentModel;using System.Drawing;using System.Data;using System.Linq;using System.Text;using System.Windows.Forms;namespace HZH_Controls.Controls{public partial class UCKeyBorderPay : UserControl{[Description("数字点击事件"), Category("自定义")]public event EventHandler NumClick;[Description("取消点击事件"), Category("自定义")]public event EventHandler CancelClick;[Description("确定点击事件"), Category("自定义")]public event EventHandler OKClick;[Description("删除点击事件"), Category("自定义")]public event EventHandler BackspaceClick;[Description("金额点击事件"), Category("自定义")]public event EventHandler MoneyClick;public UCKeyBorderPay(){InitializeComponent();}#region 设置快速付款金额/// <summary>/// 功能描述:设置快速付款金额/// 作者:HZH/// 创建日期:-03-07 11:41:04/// 任务编号:POS/// </summary>/// <param name="SorceMoney">SorceMoney</param>public void SetPayMoney(decimal SorceMoney){List<decimal> list = new List<decimal>();decimal d = Math.Ceiling(SorceMoney);if (SorceMoney > 0m){if (SorceMoney < 5m){list.Add(5m);list.Add(10m);list.Add(20m);list.Add(50m);}else if (SorceMoney < 10m){list.Add(10m);list.Add(20m);list.Add(50m);list.Add(100m);}else{int num = Convert.ToInt32(d % 10m);int num2 = Convert.ToInt32(Math.Floor(d / 10m) % 10m);int num3 = Convert.ToInt32(Math.Floor(d / 100m));int num4;if (num < 5){num4 = num2 * 10 + 5;list.Add(num4 + num3 * 100);num4 = (num2 + 1) * 10;list.Add(num4 + num3 * 100);}else{num4 = (num2 + 1) * 10;list.Add(num4 + num3 * 100);}if (num4 >= 0 && num4 < 10){num4 = 10;if (list.Count < 4){list.Add(num4 + num3 * 100);}num4 = 20;if (list.Count < 4){list.Add(num4 + num3 * 100);}num4 = 50;if (list.Count < 4){list.Add(num4 + num3 * 100);}num4 = 100;if (list.Count < 4){list.Add(num4 + num3 * 100);}}else if (num4 >= 10 && num4 < 20){num4 = 20;if (list.Count < 4){list.Add(num4 + num3 * 100);}num4 = 50;if (list.Count < 4){list.Add(num4 + num3 * 100);}num4 = 100;if (list.Count < 4){list.Add(num4 + num3 * 100);}}else if (num4 >= 20 && num4 < 50){num4 = 50;if (list.Count < 4){list.Add(num4 + num3 * 100);}num4 = 100;if (list.Count < 4){list.Add(num4 + num3 * 100);}}else if (num4 < 100){num4 = 100;if (list.Count < 4){list.Add(num4 + num3 * 100);}}}}SetFastMoneyToContrl(list);}#endregionprivate void SetFastMoneyToContrl(List<decimal> values){List<Label> lbl = new List<Label>() { lblFast1, lblFast2, lblFast3, lblFast4 };lblFast1.Tag = lblFast1.Text = "";lblFast2.Tag = lblFast2.Text = "";lblFast3.Tag = lblFast3.Text = "";lblFast4.Tag = lblFast4.Text = "";for (int i = 0; i < lbl.Count && i < values.Count; i++){if (values[i].ToString("0.##").Length < 4){lbl[i].Font = new System.Drawing.Font("Arial Unicode MS", 30F);}else{Graphics graphics = lbl[i].CreateGraphics();for (int j = 0; j < 5; j++){SizeF sizeF = graphics.MeasureString(values[i].ToString("0.##"), new System.Drawing.Font("Arial Unicode MS", 30 - j * 5), 100, StringFormat.GenericTypographic);if (sizeF.Width <= lbl[i].Width - 20){lbl[i].Font = new System.Drawing.Font("Arial Unicode MS", 30 - j * 5);break;}}graphics.Dispose();}lbl[i].Tag = lbl[i].Text = values[i].ToString("0.##");}}private void Num_MouseDown(object sender, MouseEventArgs e){if (NumClick != null)NumClick((sender as Label).Tag, e);}private void Backspace_MouseDown(object sender, MouseEventArgs e){if (BackspaceClick != null)BackspaceClick((sender as Label).Tag, e);}private void Cancel_MouseDown(object sender, MouseEventArgs e){if (CancelClick != null)CancelClick((sender as Label).Tag, e);}private void OK_MouseDown(object sender, MouseEventArgs e){if (OKClick != null)OKClick((sender as Label).Tag, e);}private void Money_MouseDown(object sender, MouseEventArgs e){if (MoneyClick != null)MoneyClick((sender as Label).Tag, e);}public void Money1Click(){Money_MouseDown(lblFast1, null);}public void Money2Click(){Money_MouseDown(lblFast2, null);}public void Money3Click(){Money_MouseDown(lblFast3, null);}public void Money4Click(){Money_MouseDown(lblFast4, null);}}}

namespace HZH_Controls.Controls{partial class UCKeyBorderPay{/// <summary> /// 必需的设计器变量。/// </summary>private ponentModel.IContainer components = null;/// <summary> /// 清理所有正在使用的资源。/// </summary>/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>protected override void Dispose(bool disposing){if (disposing && (components != null)){components.Dispose();}base.Dispose(disposing);}#region 组件设计器生成的代码/// <summary> /// 设计器支持所需的方法 - 不要/// 使用代码编辑器修改此方法的内容。/// </summary>private void InitializeComponent(){this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();this.panel19 = new System.Windows.Forms.Panel();this.lblFast4 = new System.Windows.Forms.Label();this.ucSplitLine_V19 = new HZH_Controls.Controls.UCSplitLine_V();this.panel18 = new System.Windows.Forms.Panel();this.label18 = new System.Windows.Forms.Label();this.panel17 = new System.Windows.Forms.Panel();this.lblFast3 = new System.Windows.Forms.Label();this.ucSplitLine_H17 = new HZH_Controls.Controls.UCSplitLine_H();this.ucSplitLine_V17 = new HZH_Controls.Controls.UCSplitLine_V();this.panel16 = new System.Windows.Forms.Panel();this.label16 = new System.Windows.Forms.Label();this.ucSplitLine_H16 = new HZH_Controls.Controls.UCSplitLine_H();this.panel15 = new System.Windows.Forms.Panel();this.lblFast2 = new System.Windows.Forms.Label();this.ucSplitLine_H15 = new HZH_Controls.Controls.UCSplitLine_H();this.ucSplitLine_V15 = new HZH_Controls.Controls.UCSplitLine_V();this.panel14 = new System.Windows.Forms.Panel();this.label14 = new System.Windows.Forms.Label();this.ucSplitLine_H14 = new HZH_Controls.Controls.UCSplitLine_H();this.panel13 = new System.Windows.Forms.Panel();this.lblFast1 = new System.Windows.Forms.Label();this.ucSplitLine_H13 = new HZH_Controls.Controls.UCSplitLine_H();this.ucSplitLine_V13 = new HZH_Controls.Controls.UCSplitLine_V();this.panel12 = new System.Windows.Forms.Panel();this.label12 = new System.Windows.Forms.Label();this.ucSplitLine_V12 = new HZH_Controls.Controls.UCSplitLine_V();this.panel11 = new System.Windows.Forms.Panel();this.label11 = new System.Windows.Forms.Label();this.ucSplitLine_V11 = new HZH_Controls.Controls.UCSplitLine_V();this.panel10 = new System.Windows.Forms.Panel();this.label10 = new System.Windows.Forms.Label();this.ucSplitLine_V10 = new HZH_Controls.Controls.UCSplitLine_V();this.panel9 = new System.Windows.Forms.Panel();this.label9 = new System.Windows.Forms.Label();this.ucSplitLine_H9 = new HZH_Controls.Controls.UCSplitLine_H();this.ucSplitLine_V9 = new HZH_Controls.Controls.UCSplitLine_V();this.panel8 = new System.Windows.Forms.Panel();this.label8 = new System.Windows.Forms.Label();this.ucSplitLine_H8 = new HZH_Controls.Controls.UCSplitLine_H();this.ucSplitLine_V8 = new HZH_Controls.Controls.UCSplitLine_V();this.panel7 = new System.Windows.Forms.Panel();this.label7 = new System.Windows.Forms.Label();this.ucSplitLine_H7 = new HZH_Controls.Controls.UCSplitLine_H();this.ucSplitLine_V7 = new HZH_Controls.Controls.UCSplitLine_V();this.panel6 = new System.Windows.Forms.Panel();this.label6 = new System.Windows.Forms.Label();this.ucSplitLine_H6 = new HZH_Controls.Controls.UCSplitLine_H();this.ucSplitLine_V6 = new HZH_Controls.Controls.UCSplitLine_V();this.panel5 = new System.Windows.Forms.Panel();this.label5 = new System.Windows.Forms.Label();this.ucSplitLine_H5 = new HZH_Controls.Controls.UCSplitLine_H();this.ucSplitLine_V5 = new HZH_Controls.Controls.UCSplitLine_V();this.panel4 = new System.Windows.Forms.Panel();this.label4 = new System.Windows.Forms.Label();this.ucSplitLine_H4 = new HZH_Controls.Controls.UCSplitLine_H();this.ucSplitLine_V4 = new HZH_Controls.Controls.UCSplitLine_V();this.panel3 = new System.Windows.Forms.Panel();this.label3 = new System.Windows.Forms.Label();this.ucSplitLine_H3 = new HZH_Controls.Controls.UCSplitLine_H();this.ucSplitLine_V3 = new HZH_Controls.Controls.UCSplitLine_V();this.panel2 = new System.Windows.Forms.Panel();this.label2 = new System.Windows.Forms.Label();this.ucSplitLine_H2 = new HZH_Controls.Controls.UCSplitLine_H();this.ucSplitLine_V2 = new HZH_Controls.Controls.UCSplitLine_V();this.panel1 = new System.Windows.Forms.Panel();this.label1 = new System.Windows.Forms.Label();this.ucSplitLine_H1 = new HZH_Controls.Controls.UCSplitLine_H();this.ucSplitLine_V1 = new HZH_Controls.Controls.UCSplitLine_V();this.ucSplitLine_H11 = new HZH_Controls.Controls.UCSplitLine_H();this.ucSplitLine_H10 = new HZH_Controls.Controls.UCSplitLine_H();this.ucSplitLine_V16 = new HZH_Controls.Controls.UCSplitLine_V();this.ucSplitLine_V14 = new HZH_Controls.Controls.UCSplitLine_V();this.tableLayoutPanel1.SuspendLayout();this.panel19.SuspendLayout();this.panel18.SuspendLayout();this.panel17.SuspendLayout();this.panel16.SuspendLayout();this.panel15.SuspendLayout();this.panel14.SuspendLayout();this.panel13.SuspendLayout();this.panel12.SuspendLayout();this.panel11.SuspendLayout();this.panel10.SuspendLayout();this.panel9.SuspendLayout();this.panel8.SuspendLayout();this.panel7.SuspendLayout();this.panel6.SuspendLayout();this.panel5.SuspendLayout();this.panel4.SuspendLayout();this.panel3.SuspendLayout();this.panel2.SuspendLayout();this.panel1.SuspendLayout();this.SuspendLayout();// // tableLayoutPanel1// this.tableLayoutPanel1.BackColor = System.Drawing.Color.Transparent;this.tableLayoutPanel1.ColumnCount = 5;this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 20F));this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 20F));this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 20F));this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 20F));this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 20F));this.tableLayoutPanel1.Controls.Add(this.panel19, 3, 3);this.tableLayoutPanel1.Controls.Add(this.panel18, 4, 2);this.tableLayoutPanel1.Controls.Add(this.panel17, 3, 2);this.tableLayoutPanel1.Controls.Add(this.panel16, 4, 1);this.tableLayoutPanel1.Controls.Add(this.panel15, 3, 1);this.tableLayoutPanel1.Controls.Add(this.panel14, 4, 0);this.tableLayoutPanel1.Controls.Add(this.panel13, 3, 0);this.tableLayoutPanel1.Controls.Add(this.panel12, 2, 3);this.tableLayoutPanel1.Controls.Add(this.panel11, 1, 3);this.tableLayoutPanel1.Controls.Add(this.panel10, 0, 3);this.tableLayoutPanel1.Controls.Add(this.panel9, 2, 2);this.tableLayoutPanel1.Controls.Add(this.panel8, 1, 2);this.tableLayoutPanel1.Controls.Add(this.panel7, 0, 2);this.tableLayoutPanel1.Controls.Add(this.panel6, 2, 1);this.tableLayoutPanel1.Controls.Add(this.panel5, 1, 1);this.tableLayoutPanel1.Controls.Add(this.panel4, 0, 1);this.tableLayoutPanel1.Controls.Add(this.panel3, 2, 0);this.tableLayoutPanel1.Controls.Add(this.panel2, 1, 0);this.tableLayoutPanel1.Controls.Add(this.panel1, 0, 0);this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);this.tableLayoutPanel1.Name = "tableLayoutPanel1";this.tableLayoutPanel1.RowCount = 4;this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));this.tableLayoutPanel1.Size = new System.Drawing.Size(489, 352);this.tableLayoutPanel1.TabIndex = 0;// // panel19// this.panel19.Controls.Add(this.lblFast4);this.panel19.Controls.Add(this.ucSplitLine_V19);this.panel19.Dock = System.Windows.Forms.DockStyle.Fill;this.panel19.Location = new System.Drawing.Point(291, 264);this.panel19.Margin = new System.Windows.Forms.Padding(0);this.panel19.Name = "panel19";this.panel19.Size = new System.Drawing.Size(97, 88);this.panel19.TabIndex = 19;// // lblFast4// this.lblFast4.BackColor = System.Drawing.Color.White;this.lblFast4.Dock = System.Windows.Forms.DockStyle.Fill;this.lblFast4.Font = new System.Drawing.Font("Arial Unicode MS", 30F);this.lblFast4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));this.lblFast4.Location = new System.Drawing.Point(0, 0);this.lblFast4.Name = "lblFast4";this.lblFast4.Size = new System.Drawing.Size(96, 88);this.lblFast4.TabIndex = 2;this.lblFast4.Tag = "";this.lblFast4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;this.lblFast4.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Money_MouseDown);// // ucSplitLine_V19// this.ucSplitLine_V19.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V19.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V19.Location = new System.Drawing.Point(96, 0);this.ucSplitLine_V19.Name = "ucSplitLine_V19";this.ucSplitLine_V19.Size = new System.Drawing.Size(1, 88);this.ucSplitLine_V19.TabIndex = 0;this.ucSplitLine_V19.TabStop = false;// // panel18// this.panel18.Controls.Add(this.label18);this.panel18.Dock = System.Windows.Forms.DockStyle.Fill;this.panel18.Location = new System.Drawing.Point(388, 176);this.panel18.Margin = new System.Windows.Forms.Padding(0);this.panel18.Name = "panel18";this.tableLayoutPanel1.SetRowSpan(this.panel18, 2);this.panel18.Size = new System.Drawing.Size(101, 176);this.panel18.TabIndex = 18;// // label18// this.label18.BackColor = System.Drawing.Color.White;this.label18.Dock = System.Windows.Forms.DockStyle.Fill;this.label18.Font = new System.Drawing.Font("微软雅黑", 20F);this.label18.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label18.Location = new System.Drawing.Point(0, 0);this.label18.Name = "label18";this.label18.Size = new System.Drawing.Size(101, 176);this.label18.TabIndex = 2;this.label18.Tag = "确定";this.label18.Text = "确\r\n定";this.label18.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;this.label18.MouseDown += new System.Windows.Forms.MouseEventHandler(this.OK_MouseDown);// // panel17// this.panel17.Controls.Add(this.lblFast3);this.panel17.Controls.Add(this.ucSplitLine_H17);this.panel17.Controls.Add(this.ucSplitLine_V17);this.panel17.Dock = System.Windows.Forms.DockStyle.Fill;this.panel17.Location = new System.Drawing.Point(291, 176);this.panel17.Margin = new System.Windows.Forms.Padding(0);this.panel17.Name = "panel17";this.panel17.Size = new System.Drawing.Size(97, 88);this.panel17.TabIndex = 17;// // lblFast3// this.lblFast3.BackColor = System.Drawing.Color.White;this.lblFast3.Dock = System.Windows.Forms.DockStyle.Fill;this.lblFast3.Font = new System.Drawing.Font("Arial Unicode MS", 30F);this.lblFast3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));this.lblFast3.Location = new System.Drawing.Point(0, 0);this.lblFast3.Name = "lblFast3";this.lblFast3.Size = new System.Drawing.Size(96, 87);this.lblFast3.TabIndex = 2;this.lblFast3.Tag = "";this.lblFast3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;this.lblFast3.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Money_MouseDown);// // ucSplitLine_H17// this.ucSplitLine_H17.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H17.Dock = System.Windows.Forms.DockStyle.Bottom;this.ucSplitLine_H17.Location = new System.Drawing.Point(0, 87);this.ucSplitLine_H17.Name = "ucSplitLine_H17";this.ucSplitLine_H17.Size = new System.Drawing.Size(96, 1);this.ucSplitLine_H17.TabIndex = 1;this.ucSplitLine_H17.TabStop = false;// // ucSplitLine_V17// this.ucSplitLine_V17.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V17.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V17.Location = new System.Drawing.Point(96, 0);this.ucSplitLine_V17.Name = "ucSplitLine_V17";this.ucSplitLine_V17.Size = new System.Drawing.Size(1, 88);this.ucSplitLine_V17.TabIndex = 0;this.ucSplitLine_V17.TabStop = false;// // panel16// this.panel16.Controls.Add(this.label16);this.panel16.Controls.Add(this.ucSplitLine_H16);this.panel16.Dock = System.Windows.Forms.DockStyle.Fill;this.panel16.Location = new System.Drawing.Point(388, 88);this.panel16.Margin = new System.Windows.Forms.Padding(0);this.panel16.Name = "panel16";this.panel16.Size = new System.Drawing.Size(101, 88);this.panel16.TabIndex = 16;// // label16// this.label16.BackColor = System.Drawing.Color.White;this.label16.Dock = System.Windows.Forms.DockStyle.Fill;this.label16.Font = new System.Drawing.Font("微软雅黑", 20F);this.label16.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label16.Location = new System.Drawing.Point(0, 0);this.label16.Name = "label16";this.label16.Size = new System.Drawing.Size(101, 87);this.label16.TabIndex = 2;this.label16.Tag = "取消";this.label16.Text = "取消";this.label16.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;this.label16.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Cancel_MouseDown);// // ucSplitLine_H16// this.ucSplitLine_H16.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H16.Dock = System.Windows.Forms.DockStyle.Bottom;this.ucSplitLine_H16.Location = new System.Drawing.Point(0, 87);this.ucSplitLine_H16.Name = "ucSplitLine_H16";this.ucSplitLine_H16.Size = new System.Drawing.Size(101, 1);this.ucSplitLine_H16.TabIndex = 1;this.ucSplitLine_H16.TabStop = false;// // panel15// this.panel15.Controls.Add(this.lblFast2);this.panel15.Controls.Add(this.ucSplitLine_H15);this.panel15.Controls.Add(this.ucSplitLine_V15);this.panel15.Dock = System.Windows.Forms.DockStyle.Fill;this.panel15.Location = new System.Drawing.Point(291, 88);this.panel15.Margin = new System.Windows.Forms.Padding(0);this.panel15.Name = "panel15";this.panel15.Size = new System.Drawing.Size(97, 88);this.panel15.TabIndex = 15;// // lblFast2// this.lblFast2.BackColor = System.Drawing.Color.White;this.lblFast2.Dock = System.Windows.Forms.DockStyle.Fill;this.lblFast2.Font = new System.Drawing.Font("Arial Unicode MS", 30F);this.lblFast2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));this.lblFast2.Location = new System.Drawing.Point(0, 0);this.lblFast2.Name = "lblFast2";this.lblFast2.Size = new System.Drawing.Size(96, 87);this.lblFast2.TabIndex = 2;this.lblFast2.Tag = "";this.lblFast2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;this.lblFast2.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Money_MouseDown);// // ucSplitLine_H15// this.ucSplitLine_H15.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H15.Dock = System.Windows.Forms.DockStyle.Bottom;this.ucSplitLine_H15.Location = new System.Drawing.Point(0, 87);this.ucSplitLine_H15.Name = "ucSplitLine_H15";this.ucSplitLine_H15.Size = new System.Drawing.Size(96, 1);this.ucSplitLine_H15.TabIndex = 1;this.ucSplitLine_H15.TabStop = false;// // ucSplitLine_V15// this.ucSplitLine_V15.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V15.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V15.Location = new System.Drawing.Point(96, 0);this.ucSplitLine_V15.Name = "ucSplitLine_V15";this.ucSplitLine_V15.Size = new System.Drawing.Size(1, 88);this.ucSplitLine_V15.TabIndex = 0;this.ucSplitLine_V15.TabStop = false;// // panel14// this.panel14.Controls.Add(this.label14);this.panel14.Controls.Add(this.ucSplitLine_H14);this.panel14.Dock = System.Windows.Forms.DockStyle.Fill;this.panel14.Location = new System.Drawing.Point(388, 0);this.panel14.Margin = new System.Windows.Forms.Padding(0);this.panel14.Name = "panel14";this.panel14.Size = new System.Drawing.Size(101, 88);this.panel14.TabIndex = 14;// // label14// this.label14.BackColor = System.Drawing.Color.White;this.label14.Dock = System.Windows.Forms.DockStyle.Fill;this.label14.Font = new System.Drawing.Font("Arial Unicode MS", 30F);this.label14.ForeColor = System.Drawing.Color.Black;this.label14.Image = global::HZH_Controls.Properties.Resources.keyboard_bs;this.label14.Location = new System.Drawing.Point(0, 0);this.label14.Name = "label14";this.label14.Size = new System.Drawing.Size(101, 87);this.label14.TabIndex = 2;this.label14.Tag = "删除";this.label14.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;this.label14.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Backspace_MouseDown);// // ucSplitLine_H14// this.ucSplitLine_H14.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H14.Dock = System.Windows.Forms.DockStyle.Bottom;this.ucSplitLine_H14.Location = new System.Drawing.Point(0, 87);this.ucSplitLine_H14.Name = "ucSplitLine_H14";this.ucSplitLine_H14.Size = new System.Drawing.Size(101, 1);this.ucSplitLine_H14.TabIndex = 1;this.ucSplitLine_H14.TabStop = false;// // panel13// this.panel13.Controls.Add(this.lblFast1);this.panel13.Controls.Add(this.ucSplitLine_H13);this.panel13.Controls.Add(this.ucSplitLine_V13);this.panel13.Dock = System.Windows.Forms.DockStyle.Fill;this.panel13.Location = new System.Drawing.Point(291, 0);this.panel13.Margin = new System.Windows.Forms.Padding(0);this.panel13.Name = "panel13";this.panel13.Size = new System.Drawing.Size(97, 88);this.panel13.TabIndex = 13;// // lblFast1// this.lblFast1.BackColor = System.Drawing.Color.White;this.lblFast1.Dock = System.Windows.Forms.DockStyle.Fill;this.lblFast1.Font = new System.Drawing.Font("Arial Unicode MS", 30F);this.lblFast1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));this.lblFast1.Location = new System.Drawing.Point(0, 0);this.lblFast1.Name = "lblFast1";this.lblFast1.Size = new System.Drawing.Size(96, 87);this.lblFast1.TabIndex = 2;this.lblFast1.Tag = "";this.lblFast1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;this.lblFast1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Money_MouseDown);// // ucSplitLine_H13// this.ucSplitLine_H13.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H13.Dock = System.Windows.Forms.DockStyle.Bottom;this.ucSplitLine_H13.Location = new System.Drawing.Point(0, 87);this.ucSplitLine_H13.Name = "ucSplitLine_H13";this.ucSplitLine_H13.Size = new System.Drawing.Size(96, 1);this.ucSplitLine_H13.TabIndex = 1;this.ucSplitLine_H13.TabStop = false;// // ucSplitLine_V13// this.ucSplitLine_V13.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V13.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V13.Location = new System.Drawing.Point(96, 0);this.ucSplitLine_V13.Name = "ucSplitLine_V13";this.ucSplitLine_V13.Size = new System.Drawing.Size(1, 88);this.ucSplitLine_V13.TabIndex = 0;this.ucSplitLine_V13.TabStop = false;// // panel12// this.panel12.Controls.Add(this.label12);this.panel12.Controls.Add(this.ucSplitLine_V12);this.panel12.Dock = System.Windows.Forms.DockStyle.Fill;this.panel12.Location = new System.Drawing.Point(194, 264);this.panel12.Margin = new System.Windows.Forms.Padding(0);this.panel12.Name = "panel12";this.panel12.Size = new System.Drawing.Size(97, 88);this.panel12.TabIndex = 12;// // label12// this.label12.BackColor = System.Drawing.Color.White;this.label12.Dock = System.Windows.Forms.DockStyle.Fill;this.label12.Font = new System.Drawing.Font("Arial Unicode MS", 30F);this.label12.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label12.Location = new System.Drawing.Point(0, 0);this.label12.Name = "label12";this.label12.Size = new System.Drawing.Size(96, 88);this.label12.TabIndex = 2;this.label12.Tag = ".";this.label12.Text = ".";this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;this.label12.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Num_MouseDown);// // ucSplitLine_V12// this.ucSplitLine_V12.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V12.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V12.Location = new System.Drawing.Point(96, 0);this.ucSplitLine_V12.Name = "ucSplitLine_V12";this.ucSplitLine_V12.Size = new System.Drawing.Size(1, 88);this.ucSplitLine_V12.TabIndex = 0;this.ucSplitLine_V12.TabStop = false;// // panel11// this.panel11.Controls.Add(this.label11);this.panel11.Controls.Add(this.ucSplitLine_V11);this.panel11.Dock = System.Windows.Forms.DockStyle.Fill;this.panel11.Location = new System.Drawing.Point(97, 264);this.panel11.Margin = new System.Windows.Forms.Padding(0);this.panel11.Name = "panel11";this.panel11.Size = new System.Drawing.Size(97, 88);this.panel11.TabIndex = 11;// // label11// this.label11.BackColor = System.Drawing.Color.White;this.label11.Dock = System.Windows.Forms.DockStyle.Fill;this.label11.Font = new System.Drawing.Font("Arial Unicode MS", 30F);this.label11.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label11.Location = new System.Drawing.Point(0, 0);this.label11.Name = "label11";this.label11.Size = new System.Drawing.Size(96, 88);this.label11.TabIndex = 2;this.label11.Tag = "0";this.label11.Text = "0";this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;this.label11.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Num_MouseDown);// // ucSplitLine_V11// this.ucSplitLine_V11.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V11.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V11.Location = new System.Drawing.Point(96, 0);this.ucSplitLine_V11.Name = "ucSplitLine_V11";this.ucSplitLine_V11.Size = new System.Drawing.Size(1, 88);this.ucSplitLine_V11.TabIndex = 0;this.ucSplitLine_V11.TabStop = false;// // panel10// this.panel10.Controls.Add(this.label10);this.panel10.Controls.Add(this.ucSplitLine_V10);this.panel10.Dock = System.Windows.Forms.DockStyle.Fill;this.panel10.Location = new System.Drawing.Point(0, 264);this.panel10.Margin = new System.Windows.Forms.Padding(0);this.panel10.Name = "panel10";this.panel10.Size = new System.Drawing.Size(97, 88);this.panel10.TabIndex = 10;// // label10// this.label10.BackColor = System.Drawing.Color.White;this.label10.Dock = System.Windows.Forms.DockStyle.Fill;this.label10.Font = new System.Drawing.Font("Arial Unicode MS", 30F);this.label10.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label10.Location = new System.Drawing.Point(0, 0);this.label10.Name = "label10";this.label10.Size = new System.Drawing.Size(96, 88);this.label10.TabIndex = 2;this.label10.Tag = "-";this.label10.Text = "-";this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;this.label10.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Num_MouseDown);// // ucSplitLine_V10// this.ucSplitLine_V10.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V10.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V10.Location = new System.Drawing.Point(96, 0);this.ucSplitLine_V10.Name = "ucSplitLine_V10";this.ucSplitLine_V10.Size = new System.Drawing.Size(1, 88);this.ucSplitLine_V10.TabIndex = 0;this.ucSplitLine_V10.TabStop = false;// // panel9// this.panel9.Controls.Add(this.label9);this.panel9.Controls.Add(this.ucSplitLine_H9);this.panel9.Controls.Add(this.ucSplitLine_V9);this.panel9.Dock = System.Windows.Forms.DockStyle.Fill;this.panel9.Location = new System.Drawing.Point(194, 176);this.panel9.Margin = new System.Windows.Forms.Padding(0);this.panel9.Name = "panel9";this.panel9.Size = new System.Drawing.Size(97, 88);this.panel9.TabIndex = 9;// // label9// this.label9.BackColor = System.Drawing.Color.White;this.label9.Dock = System.Windows.Forms.DockStyle.Fill;this.label9.Font = new System.Drawing.Font("Arial Unicode MS", 30F);this.label9.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label9.Location = new System.Drawing.Point(0, 0);this.label9.Name = "label9";this.label9.Size = new System.Drawing.Size(96, 87);this.label9.TabIndex = 2;this.label9.Tag = "9";this.label9.Text = "9";this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;this.label9.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Num_MouseDown);// // ucSplitLine_H9// this.ucSplitLine_H9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H9.Dock = System.Windows.Forms.DockStyle.Bottom;this.ucSplitLine_H9.Location = new System.Drawing.Point(0, 87);this.ucSplitLine_H9.Name = "ucSplitLine_H9";this.ucSplitLine_H9.Size = new System.Drawing.Size(96, 1);this.ucSplitLine_H9.TabIndex = 1;this.ucSplitLine_H9.TabStop = false;// // ucSplitLine_V9// this.ucSplitLine_V9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V9.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V9.Location = new System.Drawing.Point(96, 0);this.ucSplitLine_V9.Name = "ucSplitLine_V9";this.ucSplitLine_V9.Size = new System.Drawing.Size(1, 88);this.ucSplitLine_V9.TabIndex = 0;this.ucSplitLine_V9.TabStop = false;// // panel8// this.panel8.Controls.Add(this.label8);this.panel8.Controls.Add(this.ucSplitLine_H8);this.panel8.Controls.Add(this.ucSplitLine_V8);this.panel8.Dock = System.Windows.Forms.DockStyle.Fill;this.panel8.Location = new System.Drawing.Point(97, 176);this.panel8.Margin = new System.Windows.Forms.Padding(0);this.panel8.Name = "panel8";this.panel8.Size = new System.Drawing.Size(97, 88);this.panel8.TabIndex = 8;// // label8// this.label8.BackColor = System.Drawing.Color.White;this.label8.Dock = System.Windows.Forms.DockStyle.Fill;this.label8.Font = new System.Drawing.Font("Arial Unicode MS", 30F);this.label8.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label8.Location = new System.Drawing.Point(0, 0);this.label8.Name = "label8";this.label8.Size = new System.Drawing.Size(96, 87);this.label8.TabIndex = 2;this.label8.Tag = "8";this.label8.Text = "8";this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;this.label8.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Num_MouseDown);// // ucSplitLine_H8// this.ucSplitLine_H8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H8.Dock = System.Windows.Forms.DockStyle.Bottom;this.ucSplitLine_H8.Location = new System.Drawing.Point(0, 87);this.ucSplitLine_H8.Name = "ucSplitLine_H8";this.ucSplitLine_H8.Size = new System.Drawing.Size(96, 1);this.ucSplitLine_H8.TabIndex = 1;this.ucSplitLine_H8.TabStop = false;// // ucSplitLine_V8// this.ucSplitLine_V8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V8.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V8.Location = new System.Drawing.Point(96, 0);this.ucSplitLine_V8.Name = "ucSplitLine_V8";this.ucSplitLine_V8.Size = new System.Drawing.Size(1, 88);this.ucSplitLine_V8.TabIndex = 0;this.ucSplitLine_V8.TabStop = false;// // panel7// this.panel7.Controls.Add(this.label7);this.panel7.Controls.Add(this.ucSplitLine_H7);this.panel7.Controls.Add(this.ucSplitLine_V7);this.panel7.Dock = System.Windows.Forms.DockStyle.Fill;this.panel7.Location = new System.Drawing.Point(0, 176);this.panel7.Margin = new System.Windows.Forms.Padding(0);this.panel7.Name = "panel7";this.panel7.Size = new System.Drawing.Size(97, 88);this.panel7.TabIndex = 7;// // label7// this.label7.BackColor = System.Drawing.Color.White;this.label7.Dock = System.Windows.Forms.DockStyle.Fill;this.label7.Font = new System.Drawing.Font("Arial Unicode MS", 30F);this.label7.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label7.Location = new System.Drawing.Point(0, 0);this.label7.Name = "label7";this.label7.Size = new System.Drawing.Size(96, 87);this.label7.TabIndex = 2;this.label7.Tag = "7";this.label7.Text = "7";this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;this.label7.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Num_MouseDown);// // ucSplitLine_H7// this.ucSplitLine_H7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H7.Dock = System.Windows.Forms.DockStyle.Bottom;this.ucSplitLine_H7.Location = new System.Drawing.Point(0, 87);this.ucSplitLine_H7.Name = "ucSplitLine_H7";this.ucSplitLine_H7.Size = new System.Drawing.Size(96, 1);this.ucSplitLine_H7.TabIndex = 1;this.ucSplitLine_H7.TabStop = false;// // ucSplitLine_V7// this.ucSplitLine_V7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V7.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V7.Location = new System.Drawing.Point(96, 0);this.ucSplitLine_V7.Name = "ucSplitLine_V7";this.ucSplitLine_V7.Size = new System.Drawing.Size(1, 88);this.ucSplitLine_V7.TabIndex = 0;this.ucSplitLine_V7.TabStop = false;// // panel6// this.panel6.Controls.Add(this.label6);this.panel6.Controls.Add(this.ucSplitLine_H6);this.panel6.Controls.Add(this.ucSplitLine_V6);this.panel6.Dock = System.Windows.Forms.DockStyle.Fill;this.panel6.Location = new System.Drawing.Point(194, 88);this.panel6.Margin = new System.Windows.Forms.Padding(0);this.panel6.Name = "panel6";this.panel6.Size = new System.Drawing.Size(97, 88);this.panel6.TabIndex = 6;// // label6// this.label6.BackColor = System.Drawing.Color.White;this.label6.Dock = System.Windows.Forms.DockStyle.Fill;this.label6.Font = new System.Drawing.Font("Arial Unicode MS", 30F);this.label6.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label6.Location = new System.Drawing.Point(0, 0);this.label6.Name = "label6";this.label6.Size = new System.Drawing.Size(96, 87);this.label6.TabIndex = 2;this.label6.Tag = "6";this.label6.Text = "6";this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;this.label6.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Num_MouseDown);// // ucSplitLine_H6// this.ucSplitLine_H6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H6.Dock = System.Windows.Forms.DockStyle.Bottom;this.ucSplitLine_H6.Location = new System.Drawing.Point(0, 87);this.ucSplitLine_H6.Name = "ucSplitLine_H6";this.ucSplitLine_H6.Size = new System.Drawing.Size(96, 1);this.ucSplitLine_H6.TabIndex = 1;this.ucSplitLine_H6.TabStop = false;// // ucSplitLine_V6// this.ucSplitLine_V6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V6.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V6.Location = new System.Drawing.Point(96, 0);this.ucSplitLine_V6.Name = "ucSplitLine_V6";this.ucSplitLine_V6.Size = new System.Drawing.Size(1, 88);this.ucSplitLine_V6.TabIndex = 0;this.ucSplitLine_V6.TabStop = false;// // panel5// this.panel5.Controls.Add(this.label5);this.panel5.Controls.Add(this.ucSplitLine_H5);this.panel5.Controls.Add(this.ucSplitLine_V5);this.panel5.Dock = System.Windows.Forms.DockStyle.Fill;this.panel5.Location = new System.Drawing.Point(97, 88);this.panel5.Margin = new System.Windows.Forms.Padding(0);this.panel5.Name = "panel5";this.panel5.Size = new System.Drawing.Size(97, 88);this.panel5.TabIndex = 5;// // label5// this.label5.BackColor = System.Drawing.Color.White;this.label5.Dock = System.Windows.Forms.DockStyle.Fill;this.label5.Font = new System.Drawing.Font("Arial Unicode MS", 30F);this.label5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label5.Location = new System.Drawing.Point(0, 0);this.label5.Name = "label5";this.label5.Size = new System.Drawing.Size(96, 87);this.label5.TabIndex = 2;this.label5.Tag = "5";this.label5.Text = "5";this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;this.label5.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Num_MouseDown);// // ucSplitLine_H5// this.ucSplitLine_H5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H5.Dock = System.Windows.Forms.DockStyle.Bottom;this.ucSplitLine_H5.Location = new System.Drawing.Point(0, 87);this.ucSplitLine_H5.Name = "ucSplitLine_H5";this.ucSplitLine_H5.Size = new System.Drawing.Size(96, 1);this.ucSplitLine_H5.TabIndex = 1;this.ucSplitLine_H5.TabStop = false;// // ucSplitLine_V5// this.ucSplitLine_V5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V5.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V5.Location = new System.Drawing.Point(96, 0);this.ucSplitLine_V5.Name = "ucSplitLine_V5";this.ucSplitLine_V5.Size = new System.Drawing.Size(1, 88);this.ucSplitLine_V5.TabIndex = 0;this.ucSplitLine_V5.TabStop = false;// // panel4// this.panel4.Controls.Add(this.label4);this.panel4.Controls.Add(this.ucSplitLine_H4);this.panel4.Controls.Add(this.ucSplitLine_V4);this.panel4.Dock = System.Windows.Forms.DockStyle.Fill;this.panel4.Location = new System.Drawing.Point(0, 88);this.panel4.Margin = new System.Windows.Forms.Padding(0);this.panel4.Name = "panel4";this.panel4.Size = new System.Drawing.Size(97, 88);this.panel4.TabIndex = 4;// // label4// this.label4.BackColor = System.Drawing.Color.White;this.label4.Dock = System.Windows.Forms.DockStyle.Fill;this.label4.Font = new System.Drawing.Font("Arial Unicode MS", 30F);this.label4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label4.Location = new System.Drawing.Point(0, 0);this.label4.Name = "label4";this.label4.Size = new System.Drawing.Size(96, 87);this.label4.TabIndex = 2;this.label4.Tag = "4";this.label4.Text = "4";this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;this.label4.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Num_MouseDown);// // ucSplitLine_H4// this.ucSplitLine_H4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H4.Dock = System.Windows.Forms.DockStyle.Bottom;this.ucSplitLine_H4.Location = new System.Drawing.Point(0, 87);this.ucSplitLine_H4.Name = "ucSplitLine_H4";this.ucSplitLine_H4.Size = new System.Drawing.Size(96, 1);this.ucSplitLine_H4.TabIndex = 1;this.ucSplitLine_H4.TabStop = false;// // ucSplitLine_V4// this.ucSplitLine_V4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V4.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V4.Location = new System.Drawing.Point(96, 0);this.ucSplitLine_V4.Name = "ucSplitLine_V4";this.ucSplitLine_V4.Size = new System.Drawing.Size(1, 88);this.ucSplitLine_V4.TabIndex = 0;this.ucSplitLine_V4.TabStop = false;// // panel3// this.panel3.Controls.Add(this.label3);this.panel3.Controls.Add(this.ucSplitLine_H3);this.panel3.Controls.Add(this.ucSplitLine_V3);this.panel3.Dock = System.Windows.Forms.DockStyle.Fill;this.panel3.Location = new System.Drawing.Point(194, 0);this.panel3.Margin = new System.Windows.Forms.Padding(0);this.panel3.Name = "panel3";this.panel3.Size = new System.Drawing.Size(97, 88);this.panel3.TabIndex = 3;// // label3// this.label3.BackColor = System.Drawing.Color.White;this.label3.Dock = System.Windows.Forms.DockStyle.Fill;this.label3.Font = new System.Drawing.Font("Arial Unicode MS", 30F);this.label3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label3.Location = new System.Drawing.Point(0, 0);this.label3.Name = "label3";this.label3.Size = new System.Drawing.Size(96, 87);this.label3.TabIndex = 2;this.label3.Tag = "3";this.label3.Text = "3";this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;this.label3.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Num_MouseDown);// // ucSplitLine_H3// this.ucSplitLine_H3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H3.Dock = System.Windows.Forms.DockStyle.Bottom;this.ucSplitLine_H3.Location = new System.Drawing.Point(0, 87);this.ucSplitLine_H3.Name = "ucSplitLine_H3";this.ucSplitLine_H3.Size = new System.Drawing.Size(96, 1);this.ucSplitLine_H3.TabIndex = 1;this.ucSplitLine_H3.TabStop = false;// // ucSplitLine_V3// this.ucSplitLine_V3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V3.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V3.Location = new System.Drawing.Point(96, 0);this.ucSplitLine_V3.Name = "ucSplitLine_V3";this.ucSplitLine_V3.Size = new System.Drawing.Size(1, 88);this.ucSplitLine_V3.TabIndex = 0;this.ucSplitLine_V3.TabStop = false;// // panel2// this.panel2.Controls.Add(this.label2);this.panel2.Controls.Add(this.ucSplitLine_H2);this.panel2.Controls.Add(this.ucSplitLine_V2);this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;this.panel2.Location = new System.Drawing.Point(97, 0);this.panel2.Margin = new System.Windows.Forms.Padding(0);this.panel2.Name = "panel2";this.panel2.Size = new System.Drawing.Size(97, 88);this.panel2.TabIndex = 2;// // label2// this.label2.BackColor = System.Drawing.Color.White;this.label2.Dock = System.Windows.Forms.DockStyle.Fill;this.label2.Font = new System.Drawing.Font("Arial Unicode MS", 30F);this.label2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label2.Location = new System.Drawing.Point(0, 0);this.label2.Name = "label2";this.label2.Size = new System.Drawing.Size(96, 87);this.label2.TabIndex = 2;this.label2.Tag = "2";this.label2.Text = "2";this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;this.label2.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Num_MouseDown);// // ucSplitLine_H2// this.ucSplitLine_H2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H2.Dock = System.Windows.Forms.DockStyle.Bottom;this.ucSplitLine_H2.Location = new System.Drawing.Point(0, 87);this.ucSplitLine_H2.Name = "ucSplitLine_H2";this.ucSplitLine_H2.Size = new System.Drawing.Size(96, 1);this.ucSplitLine_H2.TabIndex = 1;this.ucSplitLine_H2.TabStop = false;// // ucSplitLine_V2// this.ucSplitLine_V2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V2.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V2.Location = new System.Drawing.Point(96, 0);this.ucSplitLine_V2.Name = "ucSplitLine_V2";this.ucSplitLine_V2.Size = new System.Drawing.Size(1, 88);this.ucSplitLine_V2.TabIndex = 0;this.ucSplitLine_V2.TabStop = false;// // panel1// this.panel1.Controls.Add(this.label1);this.panel1.Controls.Add(this.ucSplitLine_H1);this.panel1.Controls.Add(this.ucSplitLine_V1);this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;this.panel1.Location = new System.Drawing.Point(0, 0);this.panel1.Margin = new System.Windows.Forms.Padding(0);this.panel1.Name = "panel1";this.panel1.Size = new System.Drawing.Size(97, 88);this.panel1.TabIndex = 1;// // label1// this.label1.BackColor = System.Drawing.Color.White;this.label1.Dock = System.Windows.Forms.DockStyle.Fill;this.label1.Font = new System.Drawing.Font("Arial Unicode MS", 30F);this.label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label1.Location = new System.Drawing.Point(0, 0);this.label1.Name = "label1";this.label1.Size = new System.Drawing.Size(96, 87);this.label1.TabIndex = 2;this.label1.Tag = "1";this.label1.Text = "1";this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;this.label1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Num_MouseDown);// // ucSplitLine_H1// this.ucSplitLine_H1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H1.Dock = System.Windows.Forms.DockStyle.Bottom;this.ucSplitLine_H1.Location = new System.Drawing.Point(0, 87);this.ucSplitLine_H1.Name = "ucSplitLine_H1";this.ucSplitLine_H1.Size = new System.Drawing.Size(96, 1);this.ucSplitLine_H1.TabIndex = 1;this.ucSplitLine_H1.TabStop = false;// // ucSplitLine_V1// this.ucSplitLine_V1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V1.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V1.Location = new System.Drawing.Point(96, 0);this.ucSplitLine_V1.Name = "ucSplitLine_V1";this.ucSplitLine_V1.Size = new System.Drawing.Size(1, 88);this.ucSplitLine_V1.TabIndex = 0;this.ucSplitLine_V1.TabStop = false;// // ucSplitLine_H11// this.ucSplitLine_H11.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H11.Dock = System.Windows.Forms.DockStyle.Bottom;this.ucSplitLine_H11.Location = new System.Drawing.Point(1, 351);this.ucSplitLine_H11.Name = "ucSplitLine_H11";this.ucSplitLine_H11.Size = new System.Drawing.Size(487, 1);this.ucSplitLine_H11.TabIndex = 5;this.ucSplitLine_H11.TabStop = false;// // ucSplitLine_H10// this.ucSplitLine_H10.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H10.Dock = System.Windows.Forms.DockStyle.Top;this.ucSplitLine_H10.Location = new System.Drawing.Point(1, 0);this.ucSplitLine_H10.Name = "ucSplitLine_H10";this.ucSplitLine_H10.Size = new System.Drawing.Size(487, 1);this.ucSplitLine_H10.TabIndex = 3;this.ucSplitLine_H10.TabStop = false;// // ucSplitLine_V16// this.ucSplitLine_V16.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V16.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V16.Location = new System.Drawing.Point(488, 0);this.ucSplitLine_V16.Name = "ucSplitLine_V16";this.ucSplitLine_V16.Size = new System.Drawing.Size(1, 352);this.ucSplitLine_V16.TabIndex = 4;this.ucSplitLine_V16.TabStop = false;// // ucSplitLine_V14// this.ucSplitLine_V14.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V14.Dock = System.Windows.Forms.DockStyle.Left;this.ucSplitLine_V14.Location = new System.Drawing.Point(0, 0);this.ucSplitLine_V14.Name = "ucSplitLine_V14";this.ucSplitLine_V14.Size = new System.Drawing.Size(1, 352);this.ucSplitLine_V14.TabIndex = 3;this.ucSplitLine_V14.TabStop = false;// // UCKeyBorderPay// this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;this.BackColor = System.Drawing.Color.Transparent;this.Controls.Add(this.ucSplitLine_H11);this.Controls.Add(this.ucSplitLine_H10);this.Controls.Add(this.ucSplitLine_V16);this.Controls.Add(this.ucSplitLine_V14);this.Controls.Add(this.tableLayoutPanel1);this.Name = "UCKeyBorderPay";this.Size = new System.Drawing.Size(489, 352);this.tableLayoutPanel1.ResumeLayout(false);this.panel19.ResumeLayout(false);this.panel18.ResumeLayout(false);this.panel17.ResumeLayout(false);this.panel16.ResumeLayout(false);this.panel15.ResumeLayout(false);this.panel14.ResumeLayout(false);this.panel13.ResumeLayout(false);this.panel12.ResumeLayout(false);this.panel11.ResumeLayout(false);this.panel10.ResumeLayout(false);this.panel9.ResumeLayout(false);this.panel8.ResumeLayout(false);this.panel7.ResumeLayout(false);this.panel6.ResumeLayout(false);this.panel5.ResumeLayout(false);this.panel4.ResumeLayout(false);this.panel3.ResumeLayout(false);this.panel2.ResumeLayout(false);this.panel1.ResumeLayout(false);this.ResumeLayout(false);}#endregionprivate System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;private System.Windows.Forms.Panel panel19;private System.Windows.Forms.Label lblFast4;private UCSplitLine_V ucSplitLine_V19;private System.Windows.Forms.Panel panel18;private System.Windows.Forms.Label label18;private System.Windows.Forms.Panel panel17;private System.Windows.Forms.Label lblFast3;private UCSplitLine_H ucSplitLine_H17;private UCSplitLine_V ucSplitLine_V17;private System.Windows.Forms.Panel panel16;private System.Windows.Forms.Label label16;private UCSplitLine_H ucSplitLine_H16;private System.Windows.Forms.Panel panel15;private System.Windows.Forms.Label lblFast2;private UCSplitLine_H ucSplitLine_H15;private UCSplitLine_V ucSplitLine_V15;private System.Windows.Forms.Panel panel14;private System.Windows.Forms.Label label14;private UCSplitLine_H ucSplitLine_H14;private System.Windows.Forms.Panel panel13;private System.Windows.Forms.Label lblFast1;private UCSplitLine_H ucSplitLine_H13;private UCSplitLine_V ucSplitLine_V13;private System.Windows.Forms.Panel panel12;private System.Windows.Forms.Label label12;private UCSplitLine_V ucSplitLine_V12;private System.Windows.Forms.Panel panel11;private System.Windows.Forms.Label label11;private UCSplitLine_V ucSplitLine_V11;private System.Windows.Forms.Panel panel10;private System.Windows.Forms.Label label10;private UCSplitLine_V ucSplitLine_V10;private System.Windows.Forms.Panel panel9;private System.Windows.Forms.Label label9;private UCSplitLine_H ucSplitLine_H9;private UCSplitLine_V ucSplitLine_V9;private System.Windows.Forms.Panel panel8;private System.Windows.Forms.Label label8;private UCSplitLine_H ucSplitLine_H8;private UCSplitLine_V ucSplitLine_V8;private System.Windows.Forms.Panel panel7;private System.Windows.Forms.Label label7;private UCSplitLine_H ucSplitLine_H7;private UCSplitLine_V ucSplitLine_V7;private System.Windows.Forms.Panel panel6;private System.Windows.Forms.Label label6;private UCSplitLine_H ucSplitLine_H6;private UCSplitLine_V ucSplitLine_V6;private System.Windows.Forms.Panel panel5;private System.Windows.Forms.Label label5;private UCSplitLine_H ucSplitLine_H5;private UCSplitLine_V ucSplitLine_V5;private System.Windows.Forms.Panel panel4;private System.Windows.Forms.Label label4;private UCSplitLine_H ucSplitLine_H4;private UCSplitLine_V ucSplitLine_V4;private System.Windows.Forms.Panel panel3;private System.Windows.Forms.Label label3;private UCSplitLine_H ucSplitLine_H3;private UCSplitLine_V ucSplitLine_V3;private System.Windows.Forms.Panel panel2;private System.Windows.Forms.Label label2;private UCSplitLine_H ucSplitLine_H2;private UCSplitLine_V ucSplitLine_V2;private System.Windows.Forms.Panel panel1;private System.Windows.Forms.Label label1;private UCSplitLine_H ucSplitLine_H1;private UCSplitLine_V ucSplitLine_V1;private UCSplitLine_V ucSplitLine_V14;private UCSplitLine_V ucSplitLine_V16;private UCSplitLine_H ucSplitLine_H10;private UCSplitLine_H ucSplitLine_H11;}}

设计效果

那4个空白的位置就是用来填充预估付款金额的

最后的话

如果你喜欢的话,请到/kwwwvagaa/net_winform_custom_control点个星 星吧

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。