官网

http://www.hzhcontrols.com

前提

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

GitHub:https://github.com/kwwwvagaa/NetWinformControl

码云:https://gitee.com/kwwwvagaa/net_winform_custom_control.git

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

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

idkey=6e08741ef16fe53bf0314c1c9e336c4f626047943a8b76bac062361bab6b4f8d">

目录

https://www.cnblogs.com/bfyx/p/11364884.html

准备工作

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

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

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

开始

首先来说数字键盘

添加用户控件,命名UCKeyBorderNum

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

  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}");
}

看下完整代码

 // 版权所有  黄正辉  交流群:568015492   QQ:623128629
// 文件名称:UCKeyBorderNum.cs
// 创建日期:2019-08-15 16:00:10
// 功能描述:KeyBord
// 项目地址:https://gitee.com/kwwwvagaa/net_winform_custom_control
using System;
using System.Collections.Generic;
using System.ComponentModel;
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 System.ComponentModel.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 = ;
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, , );
this.tableLayoutPanel1.Controls.Add(this.panel13, , );
this.tableLayoutPanel1.Controls.Add(this.panel12, , );
this.tableLayoutPanel1.Controls.Add(this.panel11, , );
this.tableLayoutPanel1.Controls.Add(this.panel10, , );
this.tableLayoutPanel1.Controls.Add(this.panel9, , );
this.tableLayoutPanel1.Controls.Add(this.panel8, , );
this.tableLayoutPanel1.Controls.Add(this.panel7, , );
this.tableLayoutPanel1.Controls.Add(this.panel6, , );
this.tableLayoutPanel1.Controls.Add(this.panel5, , );
this.tableLayoutPanel1.Controls.Add(this.panel4, , );
this.tableLayoutPanel1.Controls.Add(this.panel3, , );
this.tableLayoutPanel1.Controls.Add(this.panel2, , );
this.tableLayoutPanel1.Controls.Add(this.panel1, , );
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.tableLayoutPanel1.Location = new System.Drawing.Point(, );
this.tableLayoutPanel1.Margin = new System.Windows.Forms.Padding();
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = ;
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(, );
this.tableLayoutPanel1.TabIndex = ;
//
// 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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.panel14.Location = new System.Drawing.Point(, );
this.panel14.Margin = new System.Windows.Forms.Padding();
this.panel14.Name = "panel14";
this.panel14.Size = new System.Drawing.Size(, );
this.panel14.TabIndex = ;
//
// 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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.label11.Location = new System.Drawing.Point(, );
this.label11.Name = "label11";
this.label11.Size = new System.Drawing.Size(, );
this.label11.TabIndex = ;
this.label11.Tag = "";
this.label11.Text = "";
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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V14.Dock = System.Windows.Forms.DockStyle.Right;
this.ucSplitLine_V14.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V14.Location = new System.Drawing.Point(, );
this.ucSplitLine_V14.Name = "ucSplitLine_V14";
this.ucSplitLine_V14.Size = new System.Drawing.Size(, );
this.ucSplitLine_V14.TabIndex = ;
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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.panel13.Location = new System.Drawing.Point(, );
this.panel13.Margin = new System.Windows.Forms.Padding();
this.panel13.Name = "panel13";
this.panel13.Size = new System.Drawing.Size(, );
this.panel13.TabIndex = ;
//
// 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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.label12.Location = new System.Drawing.Point(, );
this.label12.Name = "label12";
this.label12.Size = new System.Drawing.Size(, );
this.label12.TabIndex = ;
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_V13
//
this.ucSplitLine_V13.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V13.Dock = System.Windows.Forms.DockStyle.Right;
this.ucSplitLine_V13.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V13.Location = new System.Drawing.Point(, );
this.ucSplitLine_V13.Name = "ucSplitLine_V13";
this.ucSplitLine_V13.Size = new System.Drawing.Size(, );
this.ucSplitLine_V13.TabIndex = ;
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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.panel12.Location = new System.Drawing.Point(, );
this.panel12.Margin = new System.Windows.Forms.Padding();
this.panel12.Name = "panel12";
this.panel12.Size = new System.Drawing.Size(, );
this.panel12.TabIndex = ;
//
// 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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.label13.Location = new System.Drawing.Point(, );
this.label13.Name = "label13";
this.label13.Size = new System.Drawing.Size(, );
this.label13.TabIndex = ;
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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V12.Dock = System.Windows.Forms.DockStyle.Right;
this.ucSplitLine_V12.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V12.Location = new System.Drawing.Point(, );
this.ucSplitLine_V12.Name = "ucSplitLine_V12";
this.ucSplitLine_V12.Size = new System.Drawing.Size(, );
this.ucSplitLine_V12.TabIndex = ;
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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.panel11.Location = new System.Drawing.Point(, );
this.panel11.Margin = new System.Windows.Forms.Padding();
this.panel11.Name = "panel11";
this.panel11.Size = new System.Drawing.Size(, );
this.panel11.TabIndex = ;
//
// 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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.label10.Location = new System.Drawing.Point(, );
this.label10.Name = "label10";
this.label10.Size = new System.Drawing.Size(, );
this.label10.TabIndex = ;
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_H11
//
this.ucSplitLine_H11.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H11.Dock = System.Windows.Forms.DockStyle.Bottom;
this.ucSplitLine_H11.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H11.Location = new System.Drawing.Point(, );
this.ucSplitLine_H11.Name = "ucSplitLine_H11";
this.ucSplitLine_H11.Size = new System.Drawing.Size(, );
this.ucSplitLine_H11.TabIndex = ;
this.ucSplitLine_H11.TabStop = false;
//
// ucSplitLine_V11
//
this.ucSplitLine_V11.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V11.Dock = System.Windows.Forms.DockStyle.Right;
this.ucSplitLine_V11.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V11.Location = new System.Drawing.Point(, );
this.ucSplitLine_V11.Name = "ucSplitLine_V11";
this.ucSplitLine_V11.Size = new System.Drawing.Size(, );
this.ucSplitLine_V11.TabIndex = ;
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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.panel10.Location = new System.Drawing.Point(, );
this.panel10.Margin = new System.Windows.Forms.Padding();
this.panel10.Name = "panel10";
this.panel10.Size = new System.Drawing.Size(, );
this.panel10.TabIndex = ;
//
// 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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.label9.Location = new System.Drawing.Point(, );
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(, );
this.label9.TabIndex = ;
this.label9.Tag = "";
this.label9.Text = "";
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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H10.Dock = System.Windows.Forms.DockStyle.Bottom;
this.ucSplitLine_H10.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H10.Location = new System.Drawing.Point(, );
this.ucSplitLine_H10.Name = "ucSplitLine_H10";
this.ucSplitLine_H10.Size = new System.Drawing.Size(, );
this.ucSplitLine_H10.TabIndex = ;
this.ucSplitLine_H10.TabStop = false;
//
// ucSplitLine_V10
//
this.ucSplitLine_V10.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V10.Dock = System.Windows.Forms.DockStyle.Right;
this.ucSplitLine_V10.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V10.Location = new System.Drawing.Point(, );
this.ucSplitLine_V10.Name = "ucSplitLine_V10";
this.ucSplitLine_V10.Size = new System.Drawing.Size(, );
this.ucSplitLine_V10.TabIndex = ;
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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.panel9.Location = new System.Drawing.Point(, );
this.panel9.Margin = new System.Windows.Forms.Padding();
this.panel9.Name = "panel9";
this.panel9.Size = new System.Drawing.Size(, );
this.panel9.TabIndex = ;
//
// 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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.label8.Location = new System.Drawing.Point(, );
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(, );
this.label8.TabIndex = ;
this.label8.Tag = "";
this.label8.Text = "";
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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H9.Dock = System.Windows.Forms.DockStyle.Bottom;
this.ucSplitLine_H9.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H9.Location = new System.Drawing.Point(, );
this.ucSplitLine_H9.Name = "ucSplitLine_H9";
this.ucSplitLine_H9.Size = new System.Drawing.Size(, );
this.ucSplitLine_H9.TabIndex = ;
this.ucSplitLine_H9.TabStop = false;
//
// ucSplitLine_V9
//
this.ucSplitLine_V9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V9.Dock = System.Windows.Forms.DockStyle.Right;
this.ucSplitLine_V9.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V9.Location = new System.Drawing.Point(, );
this.ucSplitLine_V9.Name = "ucSplitLine_V9";
this.ucSplitLine_V9.Size = new System.Drawing.Size(, );
this.ucSplitLine_V9.TabIndex = ;
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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.panel8.Location = new System.Drawing.Point(, );
this.panel8.Margin = new System.Windows.Forms.Padding();
this.panel8.Name = "panel8";
this.panel8.Size = new System.Drawing.Size(, );
this.panel8.TabIndex = ;
//
// 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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.label6.Location = new System.Drawing.Point(, );
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(, );
this.label6.TabIndex = ;
this.label6.Tag = "";
this.label6.Text = "";
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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H8.Dock = System.Windows.Forms.DockStyle.Bottom;
this.ucSplitLine_H8.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H8.Location = new System.Drawing.Point(, );
this.ucSplitLine_H8.Name = "ucSplitLine_H8";
this.ucSplitLine_H8.Size = new System.Drawing.Size(, );
this.ucSplitLine_H8.TabIndex = ;
this.ucSplitLine_H8.TabStop = false;
//
// ucSplitLine_V8
//
this.ucSplitLine_V8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V8.Dock = System.Windows.Forms.DockStyle.Right;
this.ucSplitLine_V8.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V8.Location = new System.Drawing.Point(, );
this.ucSplitLine_V8.Name = "ucSplitLine_V8";
this.ucSplitLine_V8.Size = new System.Drawing.Size(, );
this.ucSplitLine_V8.TabIndex = ;
this.ucSplitLine_V8.TabStop = false;
//
// panel7
//
this.panel7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.panel7.Controls.Add(this.label14);
this.panel7.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel7.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.panel7.Location = new System.Drawing.Point(, );
this.panel7.Margin = new System.Windows.Forms.Padding();
this.panel7.Name = "panel7";
this.tableLayoutPanel1.SetRowSpan(this.panel7, );
this.panel7.Size = new System.Drawing.Size(, );
this.panel7.TabIndex = ;
//
// 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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.label14.Location = new System.Drawing.Point(, );
this.label14.Name = "label14";
this.label14.Size = new System.Drawing.Size(, );
this.label14.TabIndex = ;
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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.panel6.Location = new System.Drawing.Point(, );
this.panel6.Margin = new System.Windows.Forms.Padding();
this.panel6.Name = "panel6";
this.panel6.Size = new System.Drawing.Size(, );
this.panel6.TabIndex = ;
//
// 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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.label7.Location = new System.Drawing.Point(, );
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(, );
this.label7.TabIndex = ;
this.label7.Tag = "";
this.label7.Text = "";
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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H6.Dock = System.Windows.Forms.DockStyle.Bottom;
this.ucSplitLine_H6.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H6.Location = new System.Drawing.Point(, );
this.ucSplitLine_H6.Name = "ucSplitLine_H6";
this.ucSplitLine_H6.Size = new System.Drawing.Size(, );
this.ucSplitLine_H6.TabIndex = ;
this.ucSplitLine_H6.TabStop = false;
//
// ucSplitLine_V6
//
this.ucSplitLine_V6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V6.Dock = System.Windows.Forms.DockStyle.Right;
this.ucSplitLine_V6.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V6.Location = new System.Drawing.Point(, );
this.ucSplitLine_V6.Name = "ucSplitLine_V6";
this.ucSplitLine_V6.Size = new System.Drawing.Size(, );
this.ucSplitLine_V6.TabIndex = ;
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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.panel5.Location = new System.Drawing.Point(, );
this.panel5.Margin = new System.Windows.Forms.Padding();
this.panel5.Name = "panel5";
this.panel5.Size = new System.Drawing.Size(, );
this.panel5.TabIndex = ;
//
// 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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.label3.Location = new System.Drawing.Point(, );
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(, );
this.label3.TabIndex = ;
this.label3.Tag = "";
this.label3.Text = "";
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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H5.Dock = System.Windows.Forms.DockStyle.Bottom;
this.ucSplitLine_H5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H5.Location = new System.Drawing.Point(, );
this.ucSplitLine_H5.Name = "ucSplitLine_H5";
this.ucSplitLine_H5.Size = new System.Drawing.Size(, );
this.ucSplitLine_H5.TabIndex = ;
this.ucSplitLine_H5.TabStop = false;
//
// ucSplitLine_V5
//
this.ucSplitLine_V5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V5.Dock = System.Windows.Forms.DockStyle.Right;
this.ucSplitLine_V5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V5.Location = new System.Drawing.Point(, );
this.ucSplitLine_V5.Name = "ucSplitLine_V5";
this.ucSplitLine_V5.Size = new System.Drawing.Size(, );
this.ucSplitLine_V5.TabIndex = ;
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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.panel4.Location = new System.Drawing.Point(, );
this.panel4.Margin = new System.Windows.Forms.Padding();
this.panel4.Name = "panel4";
this.panel4.Size = new System.Drawing.Size(, );
this.panel4.TabIndex = ;
//
// 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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.label5.Location = new System.Drawing.Point(, );
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(, );
this.label5.TabIndex = ;
this.label5.Tag = "";
this.label5.Text = "";
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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H4.Dock = System.Windows.Forms.DockStyle.Bottom;
this.ucSplitLine_H4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H4.Location = new System.Drawing.Point(, );
this.ucSplitLine_H4.Name = "ucSplitLine_H4";
this.ucSplitLine_H4.Size = new System.Drawing.Size(, );
this.ucSplitLine_H4.TabIndex = ;
this.ucSplitLine_H4.TabStop = false;
//
// ucSplitLine_V4
//
this.ucSplitLine_V4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V4.Dock = System.Windows.Forms.DockStyle.Right;
this.ucSplitLine_V4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V4.Location = new System.Drawing.Point(, );
this.ucSplitLine_V4.Name = "ucSplitLine_V4";
this.ucSplitLine_V4.Size = new System.Drawing.Size(, );
this.ucSplitLine_V4.TabIndex = ;
this.ucSplitLine_V4.TabStop = false;
//
// panel3
//
this.panel3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.panel3.Location = new System.Drawing.Point(, );
this.panel3.Margin = new System.Windows.Forms.Padding();
this.panel3.Name = "panel3";
this.panel3.Size = new System.Drawing.Size(, );
this.panel3.TabIndex = ;
//
// 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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.label4.Image = global::HZH_Controls.Properties.Resources.keyboard_bs;
this.label4.Location = new System.Drawing.Point(, );
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(, );
this.label4.TabIndex = ;
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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H3.Dock = System.Windows.Forms.DockStyle.Bottom;
this.ucSplitLine_H3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H3.Location = new System.Drawing.Point(, );
this.ucSplitLine_H3.Name = "ucSplitLine_H3";
this.ucSplitLine_H3.Size = new System.Drawing.Size(, );
this.ucSplitLine_H3.TabIndex = ;
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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.panel2.Location = new System.Drawing.Point(, );
this.panel2.Margin = new System.Windows.Forms.Padding();
this.panel2.Name = "panel2";
this.panel2.Size = new System.Drawing.Size(, );
this.panel2.TabIndex = ;
//
// 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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.label2.Location = new System.Drawing.Point(, );
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(, );
this.label2.TabIndex = ;
this.label2.Tag = "";
this.label2.Text = "";
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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H2.Dock = System.Windows.Forms.DockStyle.Bottom;
this.ucSplitLine_H2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H2.Location = new System.Drawing.Point(, );
this.ucSplitLine_H2.Name = "ucSplitLine_H2";
this.ucSplitLine_H2.Size = new System.Drawing.Size(, );
this.ucSplitLine_H2.TabIndex = ;
this.ucSplitLine_H2.TabStop = false;
//
// ucSplitLine_V2
//
this.ucSplitLine_V2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V2.Dock = System.Windows.Forms.DockStyle.Right;
this.ucSplitLine_V2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V2.Location = new System.Drawing.Point(, );
this.ucSplitLine_V2.Name = "ucSplitLine_V2";
this.ucSplitLine_V2.Size = new System.Drawing.Size(, );
this.ucSplitLine_V2.TabIndex = ;
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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.panel1.Location = new System.Drawing.Point(, );
this.panel1.Margin = new System.Windows.Forms.Padding();
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(, );
this.panel1.TabIndex = ;
//
// 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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.label1.Location = new System.Drawing.Point(, );
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(, );
this.label1.TabIndex = ;
this.label1.Tag = "";
this.label1.Text = "";
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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H1.Dock = System.Windows.Forms.DockStyle.Bottom;
this.ucSplitLine_H1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H1.Location = new System.Drawing.Point(, );
this.ucSplitLine_H1.Name = "ucSplitLine_H1";
this.ucSplitLine_H1.Size = new System.Drawing.Size(, );
this.ucSplitLine_H1.TabIndex = ;
this.ucSplitLine_H1.TabStop = false;
//
// ucSplitLine_V1
//
this.ucSplitLine_V1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V1.Dock = System.Windows.Forms.DockStyle.Right;
this.ucSplitLine_V1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V1.Location = new System.Drawing.Point(, );
this.ucSplitLine_V1.Name = "ucSplitLine_V1";
this.ucSplitLine_V1.Size = new System.Drawing.Size(, );
this.ucSplitLine_V1.TabIndex = ;
this.ucSplitLine_V1.TabStop = false;
//
// ucSplitLine_V3
//
this.ucSplitLine_V3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V3.Dock = System.Windows.Forms.DockStyle.Right;
this.ucSplitLine_V3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V3.Location = new System.Drawing.Point(, );
this.ucSplitLine_V3.Name = "ucSplitLine_V3";
this.ucSplitLine_V3.Size = new System.Drawing.Size(, );
this.ucSplitLine_V3.TabIndex = ;
this.ucSplitLine_V3.TabStop = false;
//
// ucSplitLine_V7
//
this.ucSplitLine_V7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V7.Dock = System.Windows.Forms.DockStyle.Left;
this.ucSplitLine_V7.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V7.Location = new System.Drawing.Point(, );
this.ucSplitLine_V7.Name = "ucSplitLine_V7";
this.ucSplitLine_V7.Size = new System.Drawing.Size(, );
this.ucSplitLine_V7.TabIndex = ;
this.ucSplitLine_V7.TabStop = false;
//
// ucSplitLine_H7
//
this.ucSplitLine_H7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H7.Dock = System.Windows.Forms.DockStyle.Bottom;
this.ucSplitLine_H7.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H7.Location = new System.Drawing.Point(, );
this.ucSplitLine_H7.Name = "ucSplitLine_H7";
this.ucSplitLine_H7.Size = new System.Drawing.Size(, );
this.ucSplitLine_H7.TabIndex = ;
this.ucSplitLine_H7.TabStop = false;
//
// ucSplitLine_H12
//
this.ucSplitLine_H12.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H12.Dock = System.Windows.Forms.DockStyle.Top;
this.ucSplitLine_H12.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H12.Location = new System.Drawing.Point(, );
this.ucSplitLine_H12.Name = "ucSplitLine_H12";
this.ucSplitLine_H12.Size = new System.Drawing.Size(, );
this.ucSplitLine_H12.TabIndex = ;
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(, );
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); } #endregion private 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
/// 创建日期:2019-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 < )
{
num4 = num2 * + ;
list.Add(num4 + num3 * );
num4 = (num2 + ) * ;
list.Add(num4 + num3 * );
}
else
{
num4 = (num2 + ) * ;
list.Add(num4 + num3 * );
}
if (num4 >= && num4 < )
{
num4 = ;
if (list.Count < )
{
list.Add(num4 + num3 * );
}
num4 = ;
if (list.Count < )
{
list.Add(num4 + num3 * );
}
num4 = ;
if (list.Count < )
{
list.Add(num4 + num3 * );
}
num4 = ;
if (list.Count < )
{
list.Add(num4 + num3 * );
}
}
else if (num4 >= && num4 < )
{
num4 = ;
if (list.Count < )
{
list.Add(num4 + num3 * );
}
num4 = ;
if (list.Count < )
{
list.Add(num4 + num3 * );
}
num4 = ;
if (list.Count < )
{
list.Add(num4 + num3 * );
}
}
else if (num4 >= && num4 < )
{
num4 = ;
if (list.Count < )
{
list.Add(num4 + num3 * );
}
num4 = ;
if (list.Count < )
{
list.Add(num4 + num3 * );
}
}
else if (num4 < )
{
num4 = ;
if (list.Count < )
{
list.Add(num4 + num3 * );
}
}
}
}
SetFastMoneyToContrl(list);
}
#endregion private 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 = ; i < lbl.Count && i < values.Count; i++)
{
if (values[i].ToString("0.##").Length < )
{
lbl[i].Font = new System.Drawing.Font("Arial Unicode MS", 30F);
}
else
{
Graphics graphics = lbl[i].CreateGraphics();
for (int j = ; j < ; j++)
{
SizeF sizeF = graphics.MeasureString(values[i].ToString("0.##"), new System.Drawing.Font("Arial Unicode MS", - j * ), , StringFormat.GenericTypographic);
if (sizeF.Width <= lbl[i].Width - )
{
lbl[i].Font = new System.Drawing.Font("Arial Unicode MS", - j * );
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
// 创建日期:2019-08-15 16:00:14
// 功能描述:KeyBord
// 项目地址:https://gitee.com/kwwwvagaa/net_winform_custom_control
using System;
using System.Collections.Generic;
using System.ComponentModel;
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
/// 创建日期:2019-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 < )
{
num4 = num2 * + ;
list.Add(num4 + num3 * );
num4 = (num2 + ) * ;
list.Add(num4 + num3 * );
}
else
{
num4 = (num2 + ) * ;
list.Add(num4 + num3 * );
}
if (num4 >= && num4 < )
{
num4 = ;
if (list.Count < )
{
list.Add(num4 + num3 * );
}
num4 = ;
if (list.Count < )
{
list.Add(num4 + num3 * );
}
num4 = ;
if (list.Count < )
{
list.Add(num4 + num3 * );
}
num4 = ;
if (list.Count < )
{
list.Add(num4 + num3 * );
}
}
else if (num4 >= && num4 < )
{
num4 = ;
if (list.Count < )
{
list.Add(num4 + num3 * );
}
num4 = ;
if (list.Count < )
{
list.Add(num4 + num3 * );
}
num4 = ;
if (list.Count < )
{
list.Add(num4 + num3 * );
}
}
else if (num4 >= && num4 < )
{
num4 = ;
if (list.Count < )
{
list.Add(num4 + num3 * );
}
num4 = ;
if (list.Count < )
{
list.Add(num4 + num3 * );
}
}
else if (num4 < )
{
num4 = ;
if (list.Count < )
{
list.Add(num4 + num3 * );
}
}
}
}
SetFastMoneyToContrl(list);
}
#endregion private 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 = ; i < lbl.Count && i < values.Count; i++)
{
if (values[i].ToString("0.##").Length < )
{
lbl[i].Font = new System.Drawing.Font("Arial Unicode MS", 30F);
}
else
{
Graphics graphics = lbl[i].CreateGraphics();
for (int j = ; j < ; j++)
{
SizeF sizeF = graphics.MeasureString(values[i].ToString("0.##"), new System.Drawing.Font("Arial Unicode MS", - j * ), , StringFormat.GenericTypographic);
if (sizeF.Width <= lbl[i].Width - )
{
lbl[i].Font = new System.Drawing.Font("Arial Unicode MS", - j * );
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 System.ComponentModel.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 = ;
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, , );
this.tableLayoutPanel1.Controls.Add(this.panel18, , );
this.tableLayoutPanel1.Controls.Add(this.panel17, , );
this.tableLayoutPanel1.Controls.Add(this.panel16, , );
this.tableLayoutPanel1.Controls.Add(this.panel15, , );
this.tableLayoutPanel1.Controls.Add(this.panel14, , );
this.tableLayoutPanel1.Controls.Add(this.panel13, , );
this.tableLayoutPanel1.Controls.Add(this.panel12, , );
this.tableLayoutPanel1.Controls.Add(this.panel11, , );
this.tableLayoutPanel1.Controls.Add(this.panel10, , );
this.tableLayoutPanel1.Controls.Add(this.panel9, , );
this.tableLayoutPanel1.Controls.Add(this.panel8, , );
this.tableLayoutPanel1.Controls.Add(this.panel7, , );
this.tableLayoutPanel1.Controls.Add(this.panel6, , );
this.tableLayoutPanel1.Controls.Add(this.panel5, , );
this.tableLayoutPanel1.Controls.Add(this.panel4, , );
this.tableLayoutPanel1.Controls.Add(this.panel3, , );
this.tableLayoutPanel1.Controls.Add(this.panel2, , );
this.tableLayoutPanel1.Controls.Add(this.panel1, , );
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel1.Location = new System.Drawing.Point(, );
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = ;
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(, );
this.tableLayoutPanel1.TabIndex = ;
//
// 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(, );
this.panel19.Margin = new System.Windows.Forms.Padding();
this.panel19.Name = "panel19";
this.panel19.Size = new System.Drawing.Size(, );
this.panel19.TabIndex = ;
//
// 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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.lblFast4.Location = new System.Drawing.Point(, );
this.lblFast4.Name = "lblFast4";
this.lblFast4.Size = new System.Drawing.Size(, );
this.lblFast4.TabIndex = ;
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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V19.Dock = System.Windows.Forms.DockStyle.Right;
this.ucSplitLine_V19.Location = new System.Drawing.Point(, );
this.ucSplitLine_V19.Name = "ucSplitLine_V19";
this.ucSplitLine_V19.Size = new System.Drawing.Size(, );
this.ucSplitLine_V19.TabIndex = ;
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(, );
this.panel18.Margin = new System.Windows.Forms.Padding();
this.panel18.Name = "panel18";
this.tableLayoutPanel1.SetRowSpan(this.panel18, );
this.panel18.Size = new System.Drawing.Size(, );
this.panel18.TabIndex = ;
//
// 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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.label18.Location = new System.Drawing.Point(, );
this.label18.Name = "label18";
this.label18.Size = new System.Drawing.Size(, );
this.label18.TabIndex = ;
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(, );
this.panel17.Margin = new System.Windows.Forms.Padding();
this.panel17.Name = "panel17";
this.panel17.Size = new System.Drawing.Size(, );
this.panel17.TabIndex = ;
//
// 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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.lblFast3.Location = new System.Drawing.Point(, );
this.lblFast3.Name = "lblFast3";
this.lblFast3.Size = new System.Drawing.Size(, );
this.lblFast3.TabIndex = ;
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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H17.Dock = System.Windows.Forms.DockStyle.Bottom;
this.ucSplitLine_H17.Location = new System.Drawing.Point(, );
this.ucSplitLine_H17.Name = "ucSplitLine_H17";
this.ucSplitLine_H17.Size = new System.Drawing.Size(, );
this.ucSplitLine_H17.TabIndex = ;
this.ucSplitLine_H17.TabStop = false;
//
// ucSplitLine_V17
//
this.ucSplitLine_V17.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V17.Dock = System.Windows.Forms.DockStyle.Right;
this.ucSplitLine_V17.Location = new System.Drawing.Point(, );
this.ucSplitLine_V17.Name = "ucSplitLine_V17";
this.ucSplitLine_V17.Size = new System.Drawing.Size(, );
this.ucSplitLine_V17.TabIndex = ;
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(, );
this.panel16.Margin = new System.Windows.Forms.Padding();
this.panel16.Name = "panel16";
this.panel16.Size = new System.Drawing.Size(, );
this.panel16.TabIndex = ;
//
// 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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.label16.Location = new System.Drawing.Point(, );
this.label16.Name = "label16";
this.label16.Size = new System.Drawing.Size(, );
this.label16.TabIndex = ;
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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H16.Dock = System.Windows.Forms.DockStyle.Bottom;
this.ucSplitLine_H16.Location = new System.Drawing.Point(, );
this.ucSplitLine_H16.Name = "ucSplitLine_H16";
this.ucSplitLine_H16.Size = new System.Drawing.Size(, );
this.ucSplitLine_H16.TabIndex = ;
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(, );
this.panel15.Margin = new System.Windows.Forms.Padding();
this.panel15.Name = "panel15";
this.panel15.Size = new System.Drawing.Size(, );
this.panel15.TabIndex = ;
//
// 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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.lblFast2.Location = new System.Drawing.Point(, );
this.lblFast2.Name = "lblFast2";
this.lblFast2.Size = new System.Drawing.Size(, );
this.lblFast2.TabIndex = ;
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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H15.Dock = System.Windows.Forms.DockStyle.Bottom;
this.ucSplitLine_H15.Location = new System.Drawing.Point(, );
this.ucSplitLine_H15.Name = "ucSplitLine_H15";
this.ucSplitLine_H15.Size = new System.Drawing.Size(, );
this.ucSplitLine_H15.TabIndex = ;
this.ucSplitLine_H15.TabStop = false;
//
// ucSplitLine_V15
//
this.ucSplitLine_V15.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V15.Dock = System.Windows.Forms.DockStyle.Right;
this.ucSplitLine_V15.Location = new System.Drawing.Point(, );
this.ucSplitLine_V15.Name = "ucSplitLine_V15";
this.ucSplitLine_V15.Size = new System.Drawing.Size(, );
this.ucSplitLine_V15.TabIndex = ;
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(, );
this.panel14.Margin = new System.Windows.Forms.Padding();
this.panel14.Name = "panel14";
this.panel14.Size = new System.Drawing.Size(, );
this.panel14.TabIndex = ;
//
// 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(, );
this.label14.Name = "label14";
this.label14.Size = new System.Drawing.Size(, );
this.label14.TabIndex = ;
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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H14.Dock = System.Windows.Forms.DockStyle.Bottom;
this.ucSplitLine_H14.Location = new System.Drawing.Point(, );
this.ucSplitLine_H14.Name = "ucSplitLine_H14";
this.ucSplitLine_H14.Size = new System.Drawing.Size(, );
this.ucSplitLine_H14.TabIndex = ;
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(, );
this.panel13.Margin = new System.Windows.Forms.Padding();
this.panel13.Name = "panel13";
this.panel13.Size = new System.Drawing.Size(, );
this.panel13.TabIndex = ;
//
// 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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.lblFast1.Location = new System.Drawing.Point(, );
this.lblFast1.Name = "lblFast1";
this.lblFast1.Size = new System.Drawing.Size(, );
this.lblFast1.TabIndex = ;
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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H13.Dock = System.Windows.Forms.DockStyle.Bottom;
this.ucSplitLine_H13.Location = new System.Drawing.Point(, );
this.ucSplitLine_H13.Name = "ucSplitLine_H13";
this.ucSplitLine_H13.Size = new System.Drawing.Size(, );
this.ucSplitLine_H13.TabIndex = ;
this.ucSplitLine_H13.TabStop = false;
//
// ucSplitLine_V13
//
this.ucSplitLine_V13.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V13.Dock = System.Windows.Forms.DockStyle.Right;
this.ucSplitLine_V13.Location = new System.Drawing.Point(, );
this.ucSplitLine_V13.Name = "ucSplitLine_V13";
this.ucSplitLine_V13.Size = new System.Drawing.Size(, );
this.ucSplitLine_V13.TabIndex = ;
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(, );
this.panel12.Margin = new System.Windows.Forms.Padding();
this.panel12.Name = "panel12";
this.panel12.Size = new System.Drawing.Size(, );
this.panel12.TabIndex = ;
//
// 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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.label12.Location = new System.Drawing.Point(, );
this.label12.Name = "label12";
this.label12.Size = new System.Drawing.Size(, );
this.label12.TabIndex = ;
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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V12.Dock = System.Windows.Forms.DockStyle.Right;
this.ucSplitLine_V12.Location = new System.Drawing.Point(, );
this.ucSplitLine_V12.Name = "ucSplitLine_V12";
this.ucSplitLine_V12.Size = new System.Drawing.Size(, );
this.ucSplitLine_V12.TabIndex = ;
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(, );
this.panel11.Margin = new System.Windows.Forms.Padding();
this.panel11.Name = "panel11";
this.panel11.Size = new System.Drawing.Size(, );
this.panel11.TabIndex = ;
//
// 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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.label11.Location = new System.Drawing.Point(, );
this.label11.Name = "label11";
this.label11.Size = new System.Drawing.Size(, );
this.label11.TabIndex = ;
this.label11.Tag = "";
this.label11.Text = "";
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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V11.Dock = System.Windows.Forms.DockStyle.Right;
this.ucSplitLine_V11.Location = new System.Drawing.Point(, );
this.ucSplitLine_V11.Name = "ucSplitLine_V11";
this.ucSplitLine_V11.Size = new System.Drawing.Size(, );
this.ucSplitLine_V11.TabIndex = ;
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(, );
this.panel10.Margin = new System.Windows.Forms.Padding();
this.panel10.Name = "panel10";
this.panel10.Size = new System.Drawing.Size(, );
this.panel10.TabIndex = ;
//
// 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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.label10.Location = new System.Drawing.Point(, );
this.label10.Name = "label10";
this.label10.Size = new System.Drawing.Size(, );
this.label10.TabIndex = ;
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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V10.Dock = System.Windows.Forms.DockStyle.Right;
this.ucSplitLine_V10.Location = new System.Drawing.Point(, );
this.ucSplitLine_V10.Name = "ucSplitLine_V10";
this.ucSplitLine_V10.Size = new System.Drawing.Size(, );
this.ucSplitLine_V10.TabIndex = ;
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(, );
this.panel9.Margin = new System.Windows.Forms.Padding();
this.panel9.Name = "panel9";
this.panel9.Size = new System.Drawing.Size(, );
this.panel9.TabIndex = ;
//
// 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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.label9.Location = new System.Drawing.Point(, );
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(, );
this.label9.TabIndex = ;
this.label9.Tag = "";
this.label9.Text = "";
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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H9.Dock = System.Windows.Forms.DockStyle.Bottom;
this.ucSplitLine_H9.Location = new System.Drawing.Point(, );
this.ucSplitLine_H9.Name = "ucSplitLine_H9";
this.ucSplitLine_H9.Size = new System.Drawing.Size(, );
this.ucSplitLine_H9.TabIndex = ;
this.ucSplitLine_H9.TabStop = false;
//
// ucSplitLine_V9
//
this.ucSplitLine_V9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V9.Dock = System.Windows.Forms.DockStyle.Right;
this.ucSplitLine_V9.Location = new System.Drawing.Point(, );
this.ucSplitLine_V9.Name = "ucSplitLine_V9";
this.ucSplitLine_V9.Size = new System.Drawing.Size(, );
this.ucSplitLine_V9.TabIndex = ;
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(, );
this.panel8.Margin = new System.Windows.Forms.Padding();
this.panel8.Name = "panel8";
this.panel8.Size = new System.Drawing.Size(, );
this.panel8.TabIndex = ;
//
// 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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.label8.Location = new System.Drawing.Point(, );
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(, );
this.label8.TabIndex = ;
this.label8.Tag = "";
this.label8.Text = "";
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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H8.Dock = System.Windows.Forms.DockStyle.Bottom;
this.ucSplitLine_H8.Location = new System.Drawing.Point(, );
this.ucSplitLine_H8.Name = "ucSplitLine_H8";
this.ucSplitLine_H8.Size = new System.Drawing.Size(, );
this.ucSplitLine_H8.TabIndex = ;
this.ucSplitLine_H8.TabStop = false;
//
// ucSplitLine_V8
//
this.ucSplitLine_V8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V8.Dock = System.Windows.Forms.DockStyle.Right;
this.ucSplitLine_V8.Location = new System.Drawing.Point(, );
this.ucSplitLine_V8.Name = "ucSplitLine_V8";
this.ucSplitLine_V8.Size = new System.Drawing.Size(, );
this.ucSplitLine_V8.TabIndex = ;
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(, );
this.panel7.Margin = new System.Windows.Forms.Padding();
this.panel7.Name = "panel7";
this.panel7.Size = new System.Drawing.Size(, );
this.panel7.TabIndex = ;
//
// 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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.label7.Location = new System.Drawing.Point(, );
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(, );
this.label7.TabIndex = ;
this.label7.Tag = "";
this.label7.Text = "";
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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H7.Dock = System.Windows.Forms.DockStyle.Bottom;
this.ucSplitLine_H7.Location = new System.Drawing.Point(, );
this.ucSplitLine_H7.Name = "ucSplitLine_H7";
this.ucSplitLine_H7.Size = new System.Drawing.Size(, );
this.ucSplitLine_H7.TabIndex = ;
this.ucSplitLine_H7.TabStop = false;
//
// ucSplitLine_V7
//
this.ucSplitLine_V7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V7.Dock = System.Windows.Forms.DockStyle.Right;
this.ucSplitLine_V7.Location = new System.Drawing.Point(, );
this.ucSplitLine_V7.Name = "ucSplitLine_V7";
this.ucSplitLine_V7.Size = new System.Drawing.Size(, );
this.ucSplitLine_V7.TabIndex = ;
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(, );
this.panel6.Margin = new System.Windows.Forms.Padding();
this.panel6.Name = "panel6";
this.panel6.Size = new System.Drawing.Size(, );
this.panel6.TabIndex = ;
//
// 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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.label6.Location = new System.Drawing.Point(, );
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(, );
this.label6.TabIndex = ;
this.label6.Tag = "";
this.label6.Text = "";
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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H6.Dock = System.Windows.Forms.DockStyle.Bottom;
this.ucSplitLine_H6.Location = new System.Drawing.Point(, );
this.ucSplitLine_H6.Name = "ucSplitLine_H6";
this.ucSplitLine_H6.Size = new System.Drawing.Size(, );
this.ucSplitLine_H6.TabIndex = ;
this.ucSplitLine_H6.TabStop = false;
//
// ucSplitLine_V6
//
this.ucSplitLine_V6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V6.Dock = System.Windows.Forms.DockStyle.Right;
this.ucSplitLine_V6.Location = new System.Drawing.Point(, );
this.ucSplitLine_V6.Name = "ucSplitLine_V6";
this.ucSplitLine_V6.Size = new System.Drawing.Size(, );
this.ucSplitLine_V6.TabIndex = ;
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(, );
this.panel5.Margin = new System.Windows.Forms.Padding();
this.panel5.Name = "panel5";
this.panel5.Size = new System.Drawing.Size(, );
this.panel5.TabIndex = ;
//
// 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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.label5.Location = new System.Drawing.Point(, );
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(, );
this.label5.TabIndex = ;
this.label5.Tag = "";
this.label5.Text = "";
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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H5.Dock = System.Windows.Forms.DockStyle.Bottom;
this.ucSplitLine_H5.Location = new System.Drawing.Point(, );
this.ucSplitLine_H5.Name = "ucSplitLine_H5";
this.ucSplitLine_H5.Size = new System.Drawing.Size(, );
this.ucSplitLine_H5.TabIndex = ;
this.ucSplitLine_H5.TabStop = false;
//
// ucSplitLine_V5
//
this.ucSplitLine_V5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V5.Dock = System.Windows.Forms.DockStyle.Right;
this.ucSplitLine_V5.Location = new System.Drawing.Point(, );
this.ucSplitLine_V5.Name = "ucSplitLine_V5";
this.ucSplitLine_V5.Size = new System.Drawing.Size(, );
this.ucSplitLine_V5.TabIndex = ;
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(, );
this.panel4.Margin = new System.Windows.Forms.Padding();
this.panel4.Name = "panel4";
this.panel4.Size = new System.Drawing.Size(, );
this.panel4.TabIndex = ;
//
// 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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.label4.Location = new System.Drawing.Point(, );
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(, );
this.label4.TabIndex = ;
this.label4.Tag = "";
this.label4.Text = "";
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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H4.Dock = System.Windows.Forms.DockStyle.Bottom;
this.ucSplitLine_H4.Location = new System.Drawing.Point(, );
this.ucSplitLine_H4.Name = "ucSplitLine_H4";
this.ucSplitLine_H4.Size = new System.Drawing.Size(, );
this.ucSplitLine_H4.TabIndex = ;
this.ucSplitLine_H4.TabStop = false;
//
// ucSplitLine_V4
//
this.ucSplitLine_V4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V4.Dock = System.Windows.Forms.DockStyle.Right;
this.ucSplitLine_V4.Location = new System.Drawing.Point(, );
this.ucSplitLine_V4.Name = "ucSplitLine_V4";
this.ucSplitLine_V4.Size = new System.Drawing.Size(, );
this.ucSplitLine_V4.TabIndex = ;
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(, );
this.panel3.Margin = new System.Windows.Forms.Padding();
this.panel3.Name = "panel3";
this.panel3.Size = new System.Drawing.Size(, );
this.panel3.TabIndex = ;
//
// 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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.label3.Location = new System.Drawing.Point(, );
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(, );
this.label3.TabIndex = ;
this.label3.Tag = "";
this.label3.Text = "";
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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H3.Dock = System.Windows.Forms.DockStyle.Bottom;
this.ucSplitLine_H3.Location = new System.Drawing.Point(, );
this.ucSplitLine_H3.Name = "ucSplitLine_H3";
this.ucSplitLine_H3.Size = new System.Drawing.Size(, );
this.ucSplitLine_H3.TabIndex = ;
this.ucSplitLine_H3.TabStop = false;
//
// ucSplitLine_V3
//
this.ucSplitLine_V3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V3.Dock = System.Windows.Forms.DockStyle.Right;
this.ucSplitLine_V3.Location = new System.Drawing.Point(, );
this.ucSplitLine_V3.Name = "ucSplitLine_V3";
this.ucSplitLine_V3.Size = new System.Drawing.Size(, );
this.ucSplitLine_V3.TabIndex = ;
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(, );
this.panel2.Margin = new System.Windows.Forms.Padding();
this.panel2.Name = "panel2";
this.panel2.Size = new System.Drawing.Size(, );
this.panel2.TabIndex = ;
//
// 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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.label2.Location = new System.Drawing.Point(, );
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(, );
this.label2.TabIndex = ;
this.label2.Tag = "";
this.label2.Text = "";
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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H2.Dock = System.Windows.Forms.DockStyle.Bottom;
this.ucSplitLine_H2.Location = new System.Drawing.Point(, );
this.ucSplitLine_H2.Name = "ucSplitLine_H2";
this.ucSplitLine_H2.Size = new System.Drawing.Size(, );
this.ucSplitLine_H2.TabIndex = ;
this.ucSplitLine_H2.TabStop = false;
//
// ucSplitLine_V2
//
this.ucSplitLine_V2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V2.Dock = System.Windows.Forms.DockStyle.Right;
this.ucSplitLine_V2.Location = new System.Drawing.Point(, );
this.ucSplitLine_V2.Name = "ucSplitLine_V2";
this.ucSplitLine_V2.Size = new System.Drawing.Size(, );
this.ucSplitLine_V2.TabIndex = ;
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(, );
this.panel1.Margin = new System.Windows.Forms.Padding();
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(, );
this.panel1.TabIndex = ;
//
// 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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.label1.Location = new System.Drawing.Point(, );
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(, );
this.label1.TabIndex = ;
this.label1.Tag = "";
this.label1.Text = "";
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)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H1.Dock = System.Windows.Forms.DockStyle.Bottom;
this.ucSplitLine_H1.Location = new System.Drawing.Point(, );
this.ucSplitLine_H1.Name = "ucSplitLine_H1";
this.ucSplitLine_H1.Size = new System.Drawing.Size(, );
this.ucSplitLine_H1.TabIndex = ;
this.ucSplitLine_H1.TabStop = false;
//
// ucSplitLine_V1
//
this.ucSplitLine_V1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V1.Dock = System.Windows.Forms.DockStyle.Right;
this.ucSplitLine_V1.Location = new System.Drawing.Point(, );
this.ucSplitLine_V1.Name = "ucSplitLine_V1";
this.ucSplitLine_V1.Size = new System.Drawing.Size(, );
this.ucSplitLine_V1.TabIndex = ;
this.ucSplitLine_V1.TabStop = false;
//
// ucSplitLine_H11
//
this.ucSplitLine_H11.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H11.Dock = System.Windows.Forms.DockStyle.Bottom;
this.ucSplitLine_H11.Location = new System.Drawing.Point(, );
this.ucSplitLine_H11.Name = "ucSplitLine_H11";
this.ucSplitLine_H11.Size = new System.Drawing.Size(, );
this.ucSplitLine_H11.TabIndex = ;
this.ucSplitLine_H11.TabStop = false;
//
// ucSplitLine_H10
//
this.ucSplitLine_H10.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H10.Dock = System.Windows.Forms.DockStyle.Top;
this.ucSplitLine_H10.Location = new System.Drawing.Point(, );
this.ucSplitLine_H10.Name = "ucSplitLine_H10";
this.ucSplitLine_H10.Size = new System.Drawing.Size(, );
this.ucSplitLine_H10.TabIndex = ;
this.ucSplitLine_H10.TabStop = false;
//
// ucSplitLine_V16
//
this.ucSplitLine_V16.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V16.Dock = System.Windows.Forms.DockStyle.Right;
this.ucSplitLine_V16.Location = new System.Drawing.Point(, );
this.ucSplitLine_V16.Name = "ucSplitLine_V16";
this.ucSplitLine_V16.Size = new System.Drawing.Size(, );
this.ucSplitLine_V16.TabIndex = ;
this.ucSplitLine_V16.TabStop = false;
//
// ucSplitLine_V14
//
this.ucSplitLine_V14.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V14.Dock = System.Windows.Forms.DockStyle.Left;
this.ucSplitLine_V14.Location = new System.Drawing.Point(, );
this.ucSplitLine_V14.Name = "ucSplitLine_V14";
this.ucSplitLine_V14.Size = new System.Drawing.Size(, );
this.ucSplitLine_V14.TabIndex = ;
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(, );
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); } #endregion private 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个空白的位置就是用来填充预估付款金额的

用处及效果

使用方法将在后面的文本框处详细介绍

最后的话

如果你喜欢的话,请到 https://gitee.com/kwwwvagaa/net_winform_custom_control 点个星 星吧

最新文章

  1. oracle中的sql%rowcount,sql%found、sql%notfound、sql%rowcount和sql%isopen
  2. 学会使用Constant常量或者Enum枚举
  3. 多线程基础(三)NSThread基础
  4. 【转】 c++拷贝构造函数(深拷贝,浅拷贝)详解
  5. 来自投资银行的20个Java面试题
  6. Java基础知识强化93:算一下你来到这个世界多少天的案例
  7. JDK自带的日志Logging
  8. nyoj 疯牛
  9. [USACO07NOV]牛继电器Cow Relays
  10. win+R启动列表
  11. wpf 给listview的数据源转换为集合
  12. js 时间动画优化
  13. 洗礼灵魂,修炼python(61)--爬虫篇—【转载】requests模块
  14. 元素class的增、删、查、toggle
  15. Tomcat服务器环境变量配置及在Eclipse中启动和配置
  16. Golang 并发concurrency
  17. 家庭房产L2-007
  18. Geocoding java调用百度地图API v2.0 图文 实例( 解决102错误)
  19. Impala shell详解
  20. 用struct模块解决tcp的粘包问题

热门文章

  1. mplayer+ffmpeg 组合截图
  2. blast2go本地化 mysql_study
  3. php编写刷网课自助下单系统(第三方支付实例)
  4. 苹果IOS内购二次验证返回state为21002的坑
  5. Spark学习之RDD
  6. 自定义View之开关
  7. 基于SpringBoot+Redis的Session共享与单点登录
  8. 《VR入门系列教程》之2---VR头显
  9. 《VR入门系列教程》之19---GearVR开发初识
  10. PHP使用array_unique对二维数组去重处理