官网

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中,英文键盘,数字键盘,支付键盘,手写键盘

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

本篇文章介绍英文键盘

开始

添加用户控件,命名UCKeyBorderAll

定义枚举,显示模式

 public enum KeyBorderCharType
{
CHAR = ,
NUMBER =
}

属性

  private KeyBorderCharType _charType = KeyBorderCharType.CHAR;

         [Description("默认显示样式"), Category("自定义")]
public KeyBorderCharType CharType
{
get { return _charType; }
set
{
_charType = value;
if (value == KeyBorderCharType.CHAR)
{
if (label37.Text.ToLower() == "abc.")
{
CharOrNum();
}
}
else
{
if (label37.Text.ToLower() == "?123")
{
CharOrNum();
}
}
}
}
[Description("按键点击事件"), Category("自定义")]
public event EventHandler KeyClick;
[Description("回车点击事件"), Category("自定义")]
public event EventHandler EnterClick;
[Description("删除点击事件"), Category("自定义")]
public event EventHandler BackspaceClike;
[Description("收起点击事件"), Category("自定义")]
public event EventHandler RetractClike;

按钮事件

 private void KeyDown_MouseDown(object sender, MouseEventArgs e)
{
Label lbl = sender as Label;
if (string.IsNullOrEmpty(lbl.Text))
{
return;
}
if (lbl.Text == "大写")
{
ToUper(true);
lbl.Text = "小写";
}
else if (lbl.Text == "小写")
{
ToUper(false);
lbl.Text = "大写";
}
else if (lbl.Text == "?123" || lbl.Text == "abc.")
{
CharOrNum();
}
else if (lbl.Text == "空格")
{
SendKeys.Send(" ");
}
else if (lbl.Text == "删除")
{
SendKeys.Send("{BACKSPACE}");
if (BackspaceClike != null)
BackspaceClike(sender, e);
}
else if (lbl.Text == "回车")
{
SendKeys.Send("{ENTER}");
if (EnterClick != null)
EnterClick(sender, e);
}
else if (lbl.Text == "收起")
{
if (RetractClike != null)
RetractClike(sender, e);
}
else
{
SendKeys.Send(lbl.Text);
}
if (KeyClick != null)
KeyClick(sender, e);
}

辅助函数

 private void ToUper(bool bln)
{
foreach (Control item in this.tableLayoutPanel2.Controls)
{
if (item is Panel)
{
foreach (Control pc in item.Controls)
{
if (pc is Label)
{
if (pc.Text == "abc.")
break;
if (bln)
{
pc.Text = pc.Text.ToUpper();
}
else
{
pc.Text = pc.Text.ToLower();
}
break;
}
}
}
}
} private void CharOrNum()
{
foreach (Control item in this.tableLayoutPanel2.Controls)
{
if (item is Panel)
{
foreach (Control pc in item.Controls)
{
if (pc is Label)
{
string strTag = pc.Text;
pc.Text = pc.Tag.ToString();
pc.Tag = strTag;
break;
}
}
}
}
}

这样一个键盘就完成了

看下完整代码

 // 版权所有  黄正辉  交流群:568015492   QQ:623128629
// 文件名称:UCKeyBorderAll.cs
// 创建日期:2019-08-15 16:00:06
// 功能描述: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
{
[DefaultEvent("KeyDown")]
public partial class UCKeyBorderAll : UserControl
{
private KeyBorderCharType _charType = KeyBorderCharType.CHAR; [Description("默认显示样式"), Category("自定义")]
public KeyBorderCharType CharType
{
get { return _charType; }
set
{
_charType = value;
if (value == KeyBorderCharType.CHAR)
{
if (label37.Text.ToLower() == "abc.")
{
CharOrNum();
}
}
else
{
if (label37.Text.ToLower() == "?123")
{
CharOrNum();
}
}
}
}
[Description("按键点击事件"), Category("自定义")]
public event EventHandler KeyClick;
[Description("回车点击事件"), Category("自定义")]
public event EventHandler EnterClick;
[Description("删除点击事件"), Category("自定义")]
public event EventHandler BackspaceClike;
[Description("收起点击事件"), Category("自定义")]
public event EventHandler RetractClike;
public UCKeyBorderAll()
{
InitializeComponent();
} private void KeyDown_MouseDown(object sender, MouseEventArgs e)
{
Label lbl = sender as Label;
if (string.IsNullOrEmpty(lbl.Text))
{
return;
}
if (lbl.Text == "大写")
{
ToUper(true);
lbl.Text = "小写";
}
else if (lbl.Text == "小写")
{
ToUper(false);
lbl.Text = "大写";
}
else if (lbl.Text == "?123" || lbl.Text == "abc.")
{
CharOrNum();
}
else if (lbl.Text == "空格")
{
SendKeys.Send(" ");
}
else if (lbl.Text == "删除")
{
SendKeys.Send("{BACKSPACE}");
if (BackspaceClike != null)
BackspaceClike(sender, e);
}
else if (lbl.Text == "回车")
{
SendKeys.Send("{ENTER}");
if (EnterClick != null)
EnterClick(sender, e);
}
else if (lbl.Text == "收起")
{
if (RetractClike != null)
RetractClike(sender, e);
}
else
{
SendKeys.Send(lbl.Text);
}
if (KeyClick != null)
KeyClick(sender, e);
} private void ToUper(bool bln)
{
foreach (Control item in this.tableLayoutPanel2.Controls)
{
if (item is Panel)
{
foreach (Control pc in item.Controls)
{
if (pc is Label)
{
if (pc.Text == "abc.")
break;
if (bln)
{
pc.Text = pc.Text.ToUpper();
}
else
{
pc.Text = pc.Text.ToLower();
}
break;
}
}
}
}
} private void CharOrNum()
{
foreach (Control item in this.tableLayoutPanel2.Controls)
{
if (item is Panel)
{
foreach (Control pc in item.Controls)
{
if (pc is Label)
{
string strTag = pc.Text;
pc.Text = pc.Tag.ToString();
pc.Tag = strTag;
break;
}
}
}
}
}
}
public enum KeyBorderCharType
{
CHAR = ,
NUMBER =
}
}
 namespace HZH_Controls.Controls
{
partial class UCKeyBorderAll
{
/// <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.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
this.panel39 = new System.Windows.Forms.Panel();
this.label39 = new System.Windows.Forms.Label();
this.ucSplitLine_V39 = new HZH_Controls.Controls.UCSplitLine_V();
this.panel37 = new System.Windows.Forms.Panel();
this.label37 = new System.Windows.Forms.Label();
this.ucSplitLine_V37 = new HZH_Controls.Controls.UCSplitLine_V();
this.panel36 = new System.Windows.Forms.Panel();
this.label36 = new System.Windows.Forms.Label();
this.ucSplitLine_V36 = new HZH_Controls.Controls.UCSplitLine_V();
this.panel35 = new System.Windows.Forms.Panel();
this.label35 = new System.Windows.Forms.Label();
this.panel33 = new System.Windows.Forms.Panel();
this.label33 = new System.Windows.Forms.Label();
this.ucSplitLine_V33 = new HZH_Controls.Controls.UCSplitLine_V();
this.panel30 = new System.Windows.Forms.Panel();
this.label30 = new System.Windows.Forms.Label();
this.ucSplitLine_H30 = new HZH_Controls.Controls.UCSplitLine_H();
this.ucSplitLine_V30 = new HZH_Controls.Controls.UCSplitLine_V();
this.panel29 = new System.Windows.Forms.Panel();
this.label29 = new System.Windows.Forms.Label();
this.ucSplitLine_H29 = new HZH_Controls.Controls.UCSplitLine_H();
this.ucSplitLine_V29 = new HZH_Controls.Controls.UCSplitLine_V();
this.panel28 = new System.Windows.Forms.Panel();
this.label28 = new System.Windows.Forms.Label();
this.ucSplitLine_H28 = new HZH_Controls.Controls.UCSplitLine_H();
this.ucSplitLine_V28 = new HZH_Controls.Controls.UCSplitLine_V();
this.panel27 = new System.Windows.Forms.Panel();
this.label27 = new System.Windows.Forms.Label();
this.ucSplitLine_H27 = new HZH_Controls.Controls.UCSplitLine_H();
this.ucSplitLine_V27 = new HZH_Controls.Controls.UCSplitLine_V();
this.panel26 = new System.Windows.Forms.Panel();
this.label26 = new System.Windows.Forms.Label();
this.ucSplitLine_H26 = new HZH_Controls.Controls.UCSplitLine_H();
this.ucSplitLine_V26 = new HZH_Controls.Controls.UCSplitLine_V();
this.panel25 = new System.Windows.Forms.Panel();
this.label25 = new System.Windows.Forms.Label();
this.ucSplitLine_H25 = new HZH_Controls.Controls.UCSplitLine_H();
this.panel23 = new System.Windows.Forms.Panel();
this.label23 = new System.Windows.Forms.Label();
this.ucSplitLine_H23 = new HZH_Controls.Controls.UCSplitLine_H();
this.ucSplitLine_V23 = new HZH_Controls.Controls.UCSplitLine_V();
this.panel22 = new System.Windows.Forms.Panel();
this.label22 = new System.Windows.Forms.Label();
this.ucSplitLine_H22 = new HZH_Controls.Controls.UCSplitLine_H();
this.ucSplitLine_V22 = new HZH_Controls.Controls.UCSplitLine_V();
this.panel21 = new System.Windows.Forms.Panel();
this.label21 = new System.Windows.Forms.Label();
this.ucSplitLine_H21 = new HZH_Controls.Controls.UCSplitLine_H();
this.ucSplitLine_V21 = new HZH_Controls.Controls.UCSplitLine_V();
this.panel20 = new System.Windows.Forms.Panel();
this.label20 = new System.Windows.Forms.Label();
this.ucSplitLine_H20 = new HZH_Controls.Controls.UCSplitLine_H();
this.ucSplitLine_V20 = new HZH_Controls.Controls.UCSplitLine_V();
this.panel19 = new System.Windows.Forms.Panel();
this.label19 = new System.Windows.Forms.Label();
this.ucSplitLine_H19 = new HZH_Controls.Controls.UCSplitLine_H();
this.ucSplitLine_V19 = new HZH_Controls.Controls.UCSplitLine_V();
this.panel18 = new System.Windows.Forms.Panel();
this.label18 = new System.Windows.Forms.Label();
this.ucSplitLine_H18 = new HZH_Controls.Controls.UCSplitLine_H();
this.ucSplitLine_V18 = new HZH_Controls.Controls.UCSplitLine_V();
this.panel17 = new System.Windows.Forms.Panel();
this.label17 = 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.ucSplitLine_V16 = new HZH_Controls.Controls.UCSplitLine_V();
this.panel15 = new System.Windows.Forms.Panel();
this.label15 = 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.label13 = 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_H12 = new HZH_Controls.Controls.UCSplitLine_H();
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_H11 = new HZH_Controls.Controls.UCSplitLine_H();
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_H10 = new HZH_Controls.Controls.UCSplitLine_H();
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.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_V4 = new HZH_Controls.Controls.UCSplitLine_V();
this.ucSplitLine_V14 = new HZH_Controls.Controls.UCSplitLine_V();
this.ucSplitLine_H24 = new HZH_Controls.Controls.UCSplitLine_H();
this.ucSplitLine_H31 = new HZH_Controls.Controls.UCSplitLine_H();
this.tableLayoutPanel2.SuspendLayout();
this.panel39.SuspendLayout();
this.panel37.SuspendLayout();
this.panel36.SuspendLayout();
this.panel35.SuspendLayout();
this.panel33.SuspendLayout();
this.panel30.SuspendLayout();
this.panel29.SuspendLayout();
this.panel28.SuspendLayout();
this.panel27.SuspendLayout();
this.panel26.SuspendLayout();
this.panel25.SuspendLayout();
this.panel23.SuspendLayout();
this.panel22.SuspendLayout();
this.panel21.SuspendLayout();
this.panel20.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();
//
// tableLayoutPanel2
//
this.tableLayoutPanel2.ColumnCount = ;
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 10F));
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 10F));
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 10F));
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 10F));
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 10F));
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 10F));
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 10F));
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 10F));
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 10F));
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 10F));
this.tableLayoutPanel2.Controls.Add(this.panel39, , );
this.tableLayoutPanel2.Controls.Add(this.panel37, , );
this.tableLayoutPanel2.Controls.Add(this.panel36, , );
this.tableLayoutPanel2.Controls.Add(this.panel35, , );
this.tableLayoutPanel2.Controls.Add(this.panel33, , );
this.tableLayoutPanel2.Controls.Add(this.panel30, , );
this.tableLayoutPanel2.Controls.Add(this.panel29, , );
this.tableLayoutPanel2.Controls.Add(this.panel28, , );
this.tableLayoutPanel2.Controls.Add(this.panel27, , );
this.tableLayoutPanel2.Controls.Add(this.panel26, , );
this.tableLayoutPanel2.Controls.Add(this.panel25, , );
this.tableLayoutPanel2.Controls.Add(this.panel23, , );
this.tableLayoutPanel2.Controls.Add(this.panel22, , );
this.tableLayoutPanel2.Controls.Add(this.panel21, , );
this.tableLayoutPanel2.Controls.Add(this.panel20, , );
this.tableLayoutPanel2.Controls.Add(this.panel19, , );
this.tableLayoutPanel2.Controls.Add(this.panel18, , );
this.tableLayoutPanel2.Controls.Add(this.panel17, , );
this.tableLayoutPanel2.Controls.Add(this.panel16, , );
this.tableLayoutPanel2.Controls.Add(this.panel15, , );
this.tableLayoutPanel2.Controls.Add(this.panel14, , );
this.tableLayoutPanel2.Controls.Add(this.panel13, , );
this.tableLayoutPanel2.Controls.Add(this.panel12, , );
this.tableLayoutPanel2.Controls.Add(this.panel11, , );
this.tableLayoutPanel2.Controls.Add(this.panel10, , );
this.tableLayoutPanel2.Controls.Add(this.panel9, , );
this.tableLayoutPanel2.Controls.Add(this.panel8, , );
this.tableLayoutPanel2.Controls.Add(this.panel7, , );
this.tableLayoutPanel2.Controls.Add(this.panel6, , );
this.tableLayoutPanel2.Controls.Add(this.panel5, , );
this.tableLayoutPanel2.Controls.Add(this.panel4, , );
this.tableLayoutPanel2.Controls.Add(this.panel3, , );
this.tableLayoutPanel2.Controls.Add(this.panel2, , );
this.tableLayoutPanel2.Controls.Add(this.panel1, , );
this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.tableLayoutPanel2.Location = new System.Drawing.Point(, );
this.tableLayoutPanel2.Margin = new System.Windows.Forms.Padding();
this.tableLayoutPanel2.Name = "tableLayoutPanel2";
this.tableLayoutPanel2.RowCount = ;
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tableLayoutPanel2.Size = new System.Drawing.Size(, );
this.tableLayoutPanel2.TabIndex = ;
//
// panel39
//
this.tableLayoutPanel2.SetColumnSpan(this.panel39, );
this.panel39.Controls.Add(this.label39);
this.panel39.Controls.Add(this.ucSplitLine_V39);
this.panel39.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel39.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.panel39.Location = new System.Drawing.Point(, );
this.panel39.Margin = new System.Windows.Forms.Padding();
this.panel39.Name = "panel39";
this.panel39.Size = new System.Drawing.Size(, );
this.panel39.TabIndex = ;
//
// label39
//
this.label39.Dock = System.Windows.Forms.DockStyle.Fill;
this.label39.Font = new System.Drawing.Font("微软雅黑", 20F);
this.label39.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.label39.Location = new System.Drawing.Point(, );
this.label39.Name = "label39";
this.label39.Size = new System.Drawing.Size(, );
this.label39.TabIndex = ;
this.label39.Tag = "空格";
this.label39.Text = "空格";
this.label39.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.label39.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_MouseDown);
//
// ucSplitLine_V39
//
this.ucSplitLine_V39.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V39.Dock = System.Windows.Forms.DockStyle.Right;
this.ucSplitLine_V39.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V39.Location = new System.Drawing.Point(, );
this.ucSplitLine_V39.Name = "ucSplitLine_V39";
this.ucSplitLine_V39.Size = new System.Drawing.Size(, );
this.ucSplitLine_V39.TabIndex = ;
this.ucSplitLine_V39.TabStop = false;
//
// panel37
//
this.panel37.Controls.Add(this.label37);
this.panel37.Controls.Add(this.ucSplitLine_V37);
this.panel37.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel37.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.panel37.Location = new System.Drawing.Point(, );
this.panel37.Margin = new System.Windows.Forms.Padding();
this.panel37.Name = "panel37";
this.panel37.Size = new System.Drawing.Size(, );
this.panel37.TabIndex = ;
//
// label37
//
this.label37.Dock = System.Windows.Forms.DockStyle.Fill;
this.label37.Font = new System.Drawing.Font("Arial Unicode MS", 15F);
this.label37.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.label37.Location = new System.Drawing.Point(, );
this.label37.Name = "label37";
this.label37.Size = new System.Drawing.Size(, );
this.label37.TabIndex = ;
this.label37.Tag = "abc.";
this.label37.Text = "?123";
this.label37.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.label37.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_MouseDown);
//
// ucSplitLine_V37
//
this.ucSplitLine_V37.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V37.Dock = System.Windows.Forms.DockStyle.Right;
this.ucSplitLine_V37.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V37.Location = new System.Drawing.Point(, );
this.ucSplitLine_V37.Name = "ucSplitLine_V37";
this.ucSplitLine_V37.Size = new System.Drawing.Size(, );
this.ucSplitLine_V37.TabIndex = ;
this.ucSplitLine_V37.TabStop = false;
//
// panel36
//
this.panel36.Controls.Add(this.label36);
this.panel36.Controls.Add(this.ucSplitLine_V36);
this.panel36.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel36.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.panel36.Location = new System.Drawing.Point(, );
this.panel36.Margin = new System.Windows.Forms.Padding();
this.panel36.Name = "panel36";
this.panel36.Size = new System.Drawing.Size(, );
this.panel36.TabIndex = ;
//
// label36
//
this.label36.Dock = System.Windows.Forms.DockStyle.Fill;
this.label36.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
this.label36.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.label36.Location = new System.Drawing.Point(, );
this.label36.Name = "label36";
this.label36.Size = new System.Drawing.Size(, );
this.label36.TabIndex = ;
this.label36.Tag = "";
this.label36.Text = ".";
this.label36.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.label36.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_MouseDown);
//
// ucSplitLine_V36
//
this.ucSplitLine_V36.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V36.Dock = System.Windows.Forms.DockStyle.Right;
this.ucSplitLine_V36.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V36.Location = new System.Drawing.Point(, );
this.ucSplitLine_V36.Name = "ucSplitLine_V36";
this.ucSplitLine_V36.Size = new System.Drawing.Size(, );
this.ucSplitLine_V36.TabIndex = ;
this.ucSplitLine_V36.TabStop = false;
//
// panel35
//
this.tableLayoutPanel2.SetColumnSpan(this.panel35, );
this.panel35.Controls.Add(this.label35);
this.panel35.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel35.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.panel35.Location = new System.Drawing.Point(, );
this.panel35.Margin = new System.Windows.Forms.Padding();
this.panel35.Name = "panel35";
this.panel35.Size = new System.Drawing.Size(, );
this.panel35.TabIndex = ;
//
// label35
//
this.label35.Dock = System.Windows.Forms.DockStyle.Fill;
this.label35.Font = new System.Drawing.Font("微软雅黑", 20F);
this.label35.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.label35.Location = new System.Drawing.Point(, );
this.label35.Name = "label35";
this.label35.Size = new System.Drawing.Size(, );
this.label35.TabIndex = ;
this.label35.Tag = "回车";
this.label35.Text = "回车";
this.label35.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.label35.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_MouseDown);
//
// panel33
//
this.panel33.Controls.Add(this.label33);
this.panel33.Controls.Add(this.ucSplitLine_V33);
this.panel33.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel33.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.panel33.Location = new System.Drawing.Point(, );
this.panel33.Margin = new System.Windows.Forms.Padding();
this.panel33.Name = "panel33";
this.panel33.Size = new System.Drawing.Size(, );
this.panel33.TabIndex = ;
//
// label33
//
this.label33.Dock = System.Windows.Forms.DockStyle.Fill;
this.label33.Font = new System.Drawing.Font("微软雅黑", 15F);
this.label33.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.label33.Location = new System.Drawing.Point(, );
this.label33.Name = "label33";
this.label33.Size = new System.Drawing.Size(, );
this.label33.TabIndex = ;
this.label33.Tag = "收起";
this.label33.Text = "收起";
this.label33.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.label33.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_MouseDown);
//
// ucSplitLine_V33
//
this.ucSplitLine_V33.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V33.Dock = System.Windows.Forms.DockStyle.Right;
this.ucSplitLine_V33.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V33.Location = new System.Drawing.Point(, );
this.ucSplitLine_V33.Name = "ucSplitLine_V33";
this.ucSplitLine_V33.Size = new System.Drawing.Size(, );
this.ucSplitLine_V33.TabIndex = ;
this.ucSplitLine_V33.TabStop = false;
//
// panel30
//
this.panel30.Controls.Add(this.label30);
this.panel30.Controls.Add(this.ucSplitLine_H30);
this.panel30.Controls.Add(this.ucSplitLine_V30);
this.panel30.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel30.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.panel30.Location = new System.Drawing.Point(, );
this.panel30.Margin = new System.Windows.Forms.Padding();
this.panel30.Name = "panel30";
this.panel30.Size = new System.Drawing.Size(, );
this.panel30.TabIndex = ;
//
// label30
//
this.label30.Dock = System.Windows.Forms.DockStyle.Fill;
this.label30.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
this.label30.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.label30.Location = new System.Drawing.Point(, );
this.label30.Name = "label30";
this.label30.Size = new System.Drawing.Size(, );
this.label30.TabIndex = ;
this.label30.Tag = "";
this.label30.Text = "c";
this.label30.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.label30.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_MouseDown);
//
// ucSplitLine_H30
//
this.ucSplitLine_H30.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H30.Dock = System.Windows.Forms.DockStyle.Bottom;
this.ucSplitLine_H30.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H30.Location = new System.Drawing.Point(, );
this.ucSplitLine_H30.Name = "ucSplitLine_H30";
this.ucSplitLine_H30.Size = new System.Drawing.Size(, );
this.ucSplitLine_H30.TabIndex = ;
this.ucSplitLine_H30.TabStop = false;
//
// ucSplitLine_V30
//
this.ucSplitLine_V30.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V30.Dock = System.Windows.Forms.DockStyle.Right;
this.ucSplitLine_V30.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V30.Location = new System.Drawing.Point(, );
this.ucSplitLine_V30.Name = "ucSplitLine_V30";
this.ucSplitLine_V30.Size = new System.Drawing.Size(, );
this.ucSplitLine_V30.TabIndex = ;
this.ucSplitLine_V30.TabStop = false;
//
// panel29
//
this.panel29.Controls.Add(this.label29);
this.panel29.Controls.Add(this.ucSplitLine_H29);
this.panel29.Controls.Add(this.ucSplitLine_V29);
this.panel29.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel29.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.panel29.Location = new System.Drawing.Point(, );
this.panel29.Margin = new System.Windows.Forms.Padding();
this.panel29.Name = "panel29";
this.panel29.Size = new System.Drawing.Size(, );
this.panel29.TabIndex = ;
//
// label29
//
this.label29.Dock = System.Windows.Forms.DockStyle.Fill;
this.label29.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
this.label29.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.label29.Location = new System.Drawing.Point(, );
this.label29.Name = "label29";
this.label29.Size = new System.Drawing.Size(, );
this.label29.TabIndex = ;
this.label29.Tag = ":";
this.label29.Text = "v";
this.label29.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.label29.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_MouseDown);
//
// ucSplitLine_H29
//
this.ucSplitLine_H29.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H29.Dock = System.Windows.Forms.DockStyle.Bottom;
this.ucSplitLine_H29.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H29.Location = new System.Drawing.Point(, );
this.ucSplitLine_H29.Name = "ucSplitLine_H29";
this.ucSplitLine_H29.Size = new System.Drawing.Size(, );
this.ucSplitLine_H29.TabIndex = ;
this.ucSplitLine_H29.TabStop = false;
//
// ucSplitLine_V29
//
this.ucSplitLine_V29.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V29.Dock = System.Windows.Forms.DockStyle.Right;
this.ucSplitLine_V29.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V29.Location = new System.Drawing.Point(, );
this.ucSplitLine_V29.Name = "ucSplitLine_V29";
this.ucSplitLine_V29.Size = new System.Drawing.Size(, );
this.ucSplitLine_V29.TabIndex = ;
this.ucSplitLine_V29.TabStop = false;
//
// panel28
//
this.panel28.Controls.Add(this.label28);
this.panel28.Controls.Add(this.ucSplitLine_H28);
this.panel28.Controls.Add(this.ucSplitLine_V28);
this.panel28.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel28.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.panel28.Location = new System.Drawing.Point(, );
this.panel28.Margin = new System.Windows.Forms.Padding();
this.panel28.Name = "panel28";
this.panel28.Size = new System.Drawing.Size(, );
this.panel28.TabIndex = ;
//
// label28
//
this.label28.Dock = System.Windows.Forms.DockStyle.Fill;
this.label28.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
this.label28.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.label28.Location = new System.Drawing.Point(, );
this.label28.Name = "label28";
this.label28.Size = new System.Drawing.Size(, );
this.label28.TabIndex = ;
this.label28.Tag = "";
this.label28.Text = "x";
this.label28.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.label28.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_MouseDown);
//
// ucSplitLine_H28
//
this.ucSplitLine_H28.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H28.Dock = System.Windows.Forms.DockStyle.Bottom;
this.ucSplitLine_H28.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H28.Location = new System.Drawing.Point(, );
this.ucSplitLine_H28.Name = "ucSplitLine_H28";
this.ucSplitLine_H28.Size = new System.Drawing.Size(, );
this.ucSplitLine_H28.TabIndex = ;
this.ucSplitLine_H28.TabStop = false;
//
// ucSplitLine_V28
//
this.ucSplitLine_V28.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V28.Dock = System.Windows.Forms.DockStyle.Right;
this.ucSplitLine_V28.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V28.Location = new System.Drawing.Point(, );
this.ucSplitLine_V28.Name = "ucSplitLine_V28";
this.ucSplitLine_V28.Size = new System.Drawing.Size(, );
this.ucSplitLine_V28.TabIndex = ;
this.ucSplitLine_V28.TabStop = false;
//
// panel27
//
this.panel27.Controls.Add(this.label27);
this.panel27.Controls.Add(this.ucSplitLine_H27);
this.panel27.Controls.Add(this.ucSplitLine_V27);
this.panel27.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel27.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.panel27.Location = new System.Drawing.Point(, );
this.panel27.Margin = new System.Windows.Forms.Padding();
this.panel27.Name = "panel27";
this.panel27.Size = new System.Drawing.Size(, );
this.panel27.TabIndex = ;
//
// label27
//
this.label27.Dock = System.Windows.Forms.DockStyle.Fill;
this.label27.Font = new System.Drawing.Font("微软雅黑", 15F);
this.label27.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.label27.Location = new System.Drawing.Point(, );
this.label27.Name = "label27";
this.label27.Size = new System.Drawing.Size(, );
this.label27.TabIndex = ;
this.label27.Tag = ".";
this.label27.Text = "大写";
this.label27.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.label27.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_MouseDown);
//
// ucSplitLine_H27
//
this.ucSplitLine_H27.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H27.Dock = System.Windows.Forms.DockStyle.Bottom;
this.ucSplitLine_H27.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H27.Location = new System.Drawing.Point(, );
this.ucSplitLine_H27.Name = "ucSplitLine_H27";
this.ucSplitLine_H27.Size = new System.Drawing.Size(, );
this.ucSplitLine_H27.TabIndex = ;
this.ucSplitLine_H27.TabStop = false;
//
// ucSplitLine_V27
//
this.ucSplitLine_V27.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V27.Dock = System.Windows.Forms.DockStyle.Right;
this.ucSplitLine_V27.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V27.Location = new System.Drawing.Point(, );
this.ucSplitLine_V27.Name = "ucSplitLine_V27";
this.ucSplitLine_V27.Size = new System.Drawing.Size(, );
this.ucSplitLine_V27.TabIndex = ;
this.ucSplitLine_V27.TabStop = false;
//
// panel26
//
this.panel26.Controls.Add(this.label26);
this.panel26.Controls.Add(this.ucSplitLine_H26);
this.panel26.Controls.Add(this.ucSplitLine_V26);
this.panel26.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel26.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.panel26.Location = new System.Drawing.Point(, );
this.panel26.Margin = new System.Windows.Forms.Padding();
this.panel26.Name = "panel26";
this.panel26.Size = new System.Drawing.Size(, );
this.panel26.TabIndex = ;
//
// label26
//
this.label26.Dock = System.Windows.Forms.DockStyle.Fill;
this.label26.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
this.label26.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.label26.Location = new System.Drawing.Point(, );
this.label26.Name = "label26";
this.label26.Size = new System.Drawing.Size(, );
this.label26.TabIndex = ;
this.label26.Tag = "";
this.label26.Text = "z";
this.label26.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.label26.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_MouseDown);
//
// ucSplitLine_H26
//
this.ucSplitLine_H26.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H26.Dock = System.Windows.Forms.DockStyle.Bottom;
this.ucSplitLine_H26.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H26.Location = new System.Drawing.Point(, );
this.ucSplitLine_H26.Name = "ucSplitLine_H26";
this.ucSplitLine_H26.Size = new System.Drawing.Size(, );
this.ucSplitLine_H26.TabIndex = ;
this.ucSplitLine_H26.TabStop = false;
//
// ucSplitLine_V26
//
this.ucSplitLine_V26.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V26.Dock = System.Windows.Forms.DockStyle.Right;
this.ucSplitLine_V26.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V26.Location = new System.Drawing.Point(, );
this.ucSplitLine_V26.Name = "ucSplitLine_V26";
this.ucSplitLine_V26.Size = new System.Drawing.Size(, );
this.ucSplitLine_V26.TabIndex = ;
this.ucSplitLine_V26.TabStop = false;
//
// panel25
//
this.tableLayoutPanel2.SetColumnSpan(this.panel25, );
this.panel25.Controls.Add(this.label25);
this.panel25.Controls.Add(this.ucSplitLine_H25);
this.panel25.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel25.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.panel25.Location = new System.Drawing.Point(, );
this.panel25.Margin = new System.Windows.Forms.Padding();
this.panel25.Name = "panel25";
this.panel25.Size = new System.Drawing.Size(, );
this.panel25.TabIndex = ;
//
// label25
//
this.label25.Dock = System.Windows.Forms.DockStyle.Fill;
this.label25.Font = new System.Drawing.Font("微软雅黑", 20F);
this.label25.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.label25.Location = new System.Drawing.Point(, );
this.label25.Name = "label25";
this.label25.Size = new System.Drawing.Size(, );
this.label25.TabIndex = ;
this.label25.Tag = "删除";
this.label25.Text = "删除";
this.label25.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.label25.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_MouseDown);
//
// ucSplitLine_H25
//
this.ucSplitLine_H25.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H25.Dock = System.Windows.Forms.DockStyle.Bottom;
this.ucSplitLine_H25.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H25.Location = new System.Drawing.Point(, );
this.ucSplitLine_H25.Name = "ucSplitLine_H25";
this.ucSplitLine_H25.Size = new System.Drawing.Size(, );
this.ucSplitLine_H25.TabIndex = ;
this.ucSplitLine_H25.TabStop = false;
//
// panel23
//
this.panel23.Controls.Add(this.label23);
this.panel23.Controls.Add(this.ucSplitLine_H23);
this.panel23.Controls.Add(this.ucSplitLine_V23);
this.panel23.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel23.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.panel23.Location = new System.Drawing.Point(, );
this.panel23.Margin = new System.Windows.Forms.Padding();
this.panel23.Name = "panel23";
this.panel23.Size = new System.Drawing.Size(, );
this.panel23.TabIndex = ;
//
// label23
//
this.label23.Dock = System.Windows.Forms.DockStyle.Fill;
this.label23.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
this.label23.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.label23.Location = new System.Drawing.Point(, );
this.label23.Name = "label23";
this.label23.Size = new System.Drawing.Size(, );
this.label23.TabIndex = ;
this.label23.Tag = "`";
this.label23.Text = "m";
this.label23.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.label23.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_MouseDown);
//
// ucSplitLine_H23
//
this.ucSplitLine_H23.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H23.Dock = System.Windows.Forms.DockStyle.Bottom;
this.ucSplitLine_H23.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H23.Location = new System.Drawing.Point(, );
this.ucSplitLine_H23.Name = "ucSplitLine_H23";
this.ucSplitLine_H23.Size = new System.Drawing.Size(, );
this.ucSplitLine_H23.TabIndex = ;
this.ucSplitLine_H23.TabStop = false;
//
// ucSplitLine_V23
//
this.ucSplitLine_V23.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V23.Dock = System.Windows.Forms.DockStyle.Right;
this.ucSplitLine_V23.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V23.Location = new System.Drawing.Point(, );
this.ucSplitLine_V23.Name = "ucSplitLine_V23";
this.ucSplitLine_V23.Size = new System.Drawing.Size(, );
this.ucSplitLine_V23.TabIndex = ;
this.ucSplitLine_V23.TabStop = false;
//
// panel22
//
this.panel22.Controls.Add(this.label22);
this.panel22.Controls.Add(this.ucSplitLine_H22);
this.panel22.Controls.Add(this.ucSplitLine_V22);
this.panel22.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel22.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.panel22.Location = new System.Drawing.Point(, );
this.panel22.Margin = new System.Windows.Forms.Padding();
this.panel22.Name = "panel22";
this.panel22.Size = new System.Drawing.Size(, );
this.panel22.TabIndex = ;
//
// label22
//
this.label22.Dock = System.Windows.Forms.DockStyle.Fill;
this.label22.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
this.label22.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.label22.Location = new System.Drawing.Point(, );
this.label22.Name = "label22";
this.label22.Size = new System.Drawing.Size(, );
this.label22.TabIndex = ;
this.label22.Tag = "!";
this.label22.Text = "b";
this.label22.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.label22.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_MouseDown);
//
// ucSplitLine_H22
//
this.ucSplitLine_H22.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H22.Dock = System.Windows.Forms.DockStyle.Bottom;
this.ucSplitLine_H22.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H22.Location = new System.Drawing.Point(, );
this.ucSplitLine_H22.Name = "ucSplitLine_H22";
this.ucSplitLine_H22.Size = new System.Drawing.Size(, );
this.ucSplitLine_H22.TabIndex = ;
this.ucSplitLine_H22.TabStop = false;
//
// ucSplitLine_V22
//
this.ucSplitLine_V22.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V22.Dock = System.Windows.Forms.DockStyle.Right;
this.ucSplitLine_V22.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V22.Location = new System.Drawing.Point(, );
this.ucSplitLine_V22.Name = "ucSplitLine_V22";
this.ucSplitLine_V22.Size = new System.Drawing.Size(, );
this.ucSplitLine_V22.TabIndex = ;
this.ucSplitLine_V22.TabStop = false;
//
// panel21
//
this.panel21.Controls.Add(this.label21);
this.panel21.Controls.Add(this.ucSplitLine_H21);
this.panel21.Controls.Add(this.ucSplitLine_V21);
this.panel21.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel21.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.panel21.Location = new System.Drawing.Point(, );
this.panel21.Margin = new System.Windows.Forms.Padding();
this.panel21.Name = "panel21";
this.panel21.Size = new System.Drawing.Size(, );
this.panel21.TabIndex = ;
//
// label21
//
this.label21.Dock = System.Windows.Forms.DockStyle.Fill;
this.label21.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
this.label21.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.label21.Location = new System.Drawing.Point(, );
this.label21.Name = "label21";
this.label21.Size = new System.Drawing.Size(, );
this.label21.TabIndex = ;
this.label21.Tag = "\'";
this.label21.Text = "n";
this.label21.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.label21.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_MouseDown);
//
// ucSplitLine_H21
//
this.ucSplitLine_H21.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H21.Dock = System.Windows.Forms.DockStyle.Bottom;
this.ucSplitLine_H21.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H21.Location = new System.Drawing.Point(, );
this.ucSplitLine_H21.Name = "ucSplitLine_H21";
this.ucSplitLine_H21.Size = new System.Drawing.Size(, );
this.ucSplitLine_H21.TabIndex = ;
this.ucSplitLine_H21.TabStop = false;
//
// ucSplitLine_V21
//
this.ucSplitLine_V21.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V21.Dock = System.Windows.Forms.DockStyle.Right;
this.ucSplitLine_V21.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V21.Location = new System.Drawing.Point(, );
this.ucSplitLine_V21.Name = "ucSplitLine_V21";
this.ucSplitLine_V21.Size = new System.Drawing.Size(, );
this.ucSplitLine_V21.TabIndex = ;
this.ucSplitLine_V21.TabStop = false;
//
// panel20
//
this.panel20.Controls.Add(this.label20);
this.panel20.Controls.Add(this.ucSplitLine_H20);
this.panel20.Controls.Add(this.ucSplitLine_V20);
this.panel20.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel20.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.panel20.Location = new System.Drawing.Point(, );
this.panel20.Margin = new System.Windows.Forms.Padding();
this.panel20.Name = "panel20";
this.panel20.Size = new System.Drawing.Size(, );
this.panel20.TabIndex = ;
//
// label20
//
this.label20.Dock = System.Windows.Forms.DockStyle.Fill;
this.label20.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
this.label20.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.label20.Location = new System.Drawing.Point(, );
this.label20.Name = "label20";
this.label20.Size = new System.Drawing.Size(, );
this.label20.TabIndex = ;
this.label20.Tag = "";
this.label20.Text = "f";
this.label20.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.label20.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_MouseDown);
//
// ucSplitLine_H20
//
this.ucSplitLine_H20.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H20.Dock = System.Windows.Forms.DockStyle.Bottom;
this.ucSplitLine_H20.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H20.Location = new System.Drawing.Point(, );
this.ucSplitLine_H20.Name = "ucSplitLine_H20";
this.ucSplitLine_H20.Size = new System.Drawing.Size(, );
this.ucSplitLine_H20.TabIndex = ;
this.ucSplitLine_H20.TabStop = false;
//
// ucSplitLine_V20
//
this.ucSplitLine_V20.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V20.Dock = System.Windows.Forms.DockStyle.Right;
this.ucSplitLine_V20.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V20.Location = new System.Drawing.Point(, );
this.ucSplitLine_V20.Name = "ucSplitLine_V20";
this.ucSplitLine_V20.Size = new System.Drawing.Size(, );
this.ucSplitLine_V20.TabIndex = ;
this.ucSplitLine_V20.TabStop = false;
//
// panel19
//
this.panel19.Controls.Add(this.label19);
this.panel19.Controls.Add(this.ucSplitLine_H19);
this.panel19.Controls.Add(this.ucSplitLine_V19);
this.panel19.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel19.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
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 = ;
//
// label19
//
this.label19.Dock = System.Windows.Forms.DockStyle.Fill;
this.label19.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
this.label19.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.label19.Location = new System.Drawing.Point(, );
this.label19.Name = "label19";
this.label19.Size = new System.Drawing.Size(, );
this.label19.TabIndex = ;
this.label19.Tag = ";";
this.label19.Text = "g";
this.label19.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.label19.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_MouseDown);
//
// ucSplitLine_H19
//
this.ucSplitLine_H19.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H19.Dock = System.Windows.Forms.DockStyle.Bottom;
this.ucSplitLine_H19.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H19.Location = new System.Drawing.Point(, );
this.ucSplitLine_H19.Name = "ucSplitLine_H19";
this.ucSplitLine_H19.Size = new System.Drawing.Size(, );
this.ucSplitLine_H19.TabIndex = ;
this.ucSplitLine_H19.TabStop = false;
//
// 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.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
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.Controls.Add(this.ucSplitLine_H18);
this.panel18.Controls.Add(this.ucSplitLine_V18);
this.panel18.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel18.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.panel18.Location = new System.Drawing.Point(, );
this.panel18.Margin = new System.Windows.Forms.Padding();
this.panel18.Name = "panel18";
this.panel18.Size = new System.Drawing.Size(, );
this.panel18.TabIndex = ;
//
// label18
//
this.label18.Dock = System.Windows.Forms.DockStyle.Fill;
this.label18.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
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 = "d";
this.label18.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.label18.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_MouseDown);
//
// ucSplitLine_H18
//
this.ucSplitLine_H18.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H18.Dock = System.Windows.Forms.DockStyle.Bottom;
this.ucSplitLine_H18.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H18.Location = new System.Drawing.Point(, );
this.ucSplitLine_H18.Name = "ucSplitLine_H18";
this.ucSplitLine_H18.Size = new System.Drawing.Size(, );
this.ucSplitLine_H18.TabIndex = ;
this.ucSplitLine_H18.TabStop = false;
//
// ucSplitLine_V18
//
this.ucSplitLine_V18.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V18.Dock = System.Windows.Forms.DockStyle.Right;
this.ucSplitLine_V18.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_V18.Location = new System.Drawing.Point(, );
this.ucSplitLine_V18.Name = "ucSplitLine_V18";
this.ucSplitLine_V18.Size = new System.Drawing.Size(, );
this.ucSplitLine_V18.TabIndex = ;
this.ucSplitLine_V18.TabStop = false;
//
// panel17
//
this.panel17.Controls.Add(this.label17);
this.panel17.Controls.Add(this.ucSplitLine_H17);
this.panel17.Controls.Add(this.ucSplitLine_V17);
this.panel17.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel17.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
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 = ;
//
// label17
//
this.label17.Dock = System.Windows.Forms.DockStyle.Fill;
this.label17.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
this.label17.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.label17.Location = new System.Drawing.Point(, );
this.label17.Name = "label17";
this.label17.Size = new System.Drawing.Size(, );
this.label17.TabIndex = ;
this.label17.Tag = "+";
this.label17.Text = "a";
this.label17.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.label17.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_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.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
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.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
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.Controls.Add(this.ucSplitLine_V16);
this.panel16.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel16.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
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.Dock = System.Windows.Forms.DockStyle.Fill;
this.label16.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
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 = "s";
this.label16.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.label16.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_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.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
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;
//
// 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.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
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;
//
// panel15
//
this.panel15.Controls.Add(this.label15);
this.panel15.Controls.Add(this.ucSplitLine_H15);
this.panel15.Controls.Add(this.ucSplitLine_V15);
this.panel15.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel15.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
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 = ;
//
// label15
//
this.label15.Dock = System.Windows.Forms.DockStyle.Fill;
this.label15.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
this.label15.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.label15.Location = new System.Drawing.Point(, );
this.label15.Name = "label15";
this.label15.Size = new System.Drawing.Size(, );
this.label15.TabIndex = ;
this.label15.Tag = "/";
this.label15.Text = "l";
this.label15.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.label15.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_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.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
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.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
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.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 = ;
//
// label14
//
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.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 = "?";
this.label14.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.label14.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_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.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
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.label13);
this.panel13.Controls.Add(this.ucSplitLine_H13);
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 = ;
//
// 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 = "k";
this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.label13.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_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.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
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.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.label12);
this.panel12.Controls.Add(this.ucSplitLine_H12);
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 = ;
//
// 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 = "h";
this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.label12.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_MouseDown);
//
// ucSplitLine_H12
//
this.ucSplitLine_H12.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H12.Dock = System.Windows.Forms.DockStyle.Bottom;
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;
//
// 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.label11);
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 = ;
//
// 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 = "j";
this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.label11.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_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.label10);
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 = ;
//
// 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 = "r";
this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.label10.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_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.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.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 = ;
//
// 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 = "t";
this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.label9.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_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.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.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 = ;
//
// 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 = "e";
this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.label8.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_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.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.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.panel7.Size = new System.Drawing.Size(, );
this.panel7.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 = "q";
this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.label7.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_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.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_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.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;
//
// 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.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 = ;
//
// 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 = "w";
this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.label6.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_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.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.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 = ;
//
// 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 = "o";
this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.label5.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_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.label4);
this.panel4.Controls.Add(this.ucSplitLine_H4);
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 = ;
//
// label4
//
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 = "p";
this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.label4.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_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;
//
// 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.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 = ;
//
// 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 = "i";
this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.label3.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_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;
//
// 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;
//
// 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 = "y";
this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.label2.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_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 = "u";
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.label1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_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_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;
//
// 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.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;
//
// ucSplitLine_H24
//
this.ucSplitLine_H24.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H24.Dock = System.Windows.Forms.DockStyle.Bottom;
this.ucSplitLine_H24.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H24.Location = new System.Drawing.Point(, );
this.ucSplitLine_H24.Name = "ucSplitLine_H24";
this.ucSplitLine_H24.Size = new System.Drawing.Size(, );
this.ucSplitLine_H24.TabIndex = ;
this.ucSplitLine_H24.TabStop = false;
//
// ucSplitLine_H31
//
this.ucSplitLine_H31.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H31.Dock = System.Windows.Forms.DockStyle.Top;
this.ucSplitLine_H31.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)()))), ((int)(((byte)()))), ((int)(((byte)()))));
this.ucSplitLine_H31.Location = new System.Drawing.Point(, );
this.ucSplitLine_H31.Name = "ucSplitLine_H31";
this.ucSplitLine_H31.Size = new System.Drawing.Size(, );
this.ucSplitLine_H31.TabIndex = ;
this.ucSplitLine_H31.TabStop = false;
//
// UCKeyBorderAll
//
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
this.BackColor = System.Drawing.Color.White;
this.Controls.Add(this.tableLayoutPanel2);
this.Controls.Add(this.ucSplitLine_H31);
this.Controls.Add(this.ucSplitLine_H24);
this.Controls.Add(this.ucSplitLine_V14);
this.Controls.Add(this.ucSplitLine_V4);
this.Margin = new System.Windows.Forms.Padding();
this.Name = "UCKeyBorderAll";
this.Size = new System.Drawing.Size(, );
this.tableLayoutPanel2.ResumeLayout(false);
this.panel39.ResumeLayout(false);
this.panel37.ResumeLayout(false);
this.panel36.ResumeLayout(false);
this.panel35.ResumeLayout(false);
this.panel33.ResumeLayout(false);
this.panel30.ResumeLayout(false);
this.panel29.ResumeLayout(false);
this.panel28.ResumeLayout(false);
this.panel27.ResumeLayout(false);
this.panel26.ResumeLayout(false);
this.panel25.ResumeLayout(false);
this.panel23.ResumeLayout(false);
this.panel22.ResumeLayout(false);
this.panel21.ResumeLayout(false);
this.panel20.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 tableLayoutPanel2;
private System.Windows.Forms.Panel panel39;
private System.Windows.Forms.Label label39;
private UCSplitLine_V ucSplitLine_V39;
private System.Windows.Forms.Panel panel37;
private System.Windows.Forms.Label label37;
private UCSplitLine_V ucSplitLine_V37;
private System.Windows.Forms.Panel panel36;
private System.Windows.Forms.Label label36;
private UCSplitLine_V ucSplitLine_V36;
private System.Windows.Forms.Panel panel35;
private System.Windows.Forms.Label label35;
private System.Windows.Forms.Panel panel33;
private System.Windows.Forms.Label label33;
private UCSplitLine_V ucSplitLine_V33;
private System.Windows.Forms.Panel panel30;
private System.Windows.Forms.Label label30;
private UCSplitLine_H ucSplitLine_H30;
private UCSplitLine_V ucSplitLine_V30;
private System.Windows.Forms.Panel panel29;
private System.Windows.Forms.Label label29;
private UCSplitLine_H ucSplitLine_H29;
private UCSplitLine_V ucSplitLine_V29;
private System.Windows.Forms.Panel panel28;
private System.Windows.Forms.Label label28;
private UCSplitLine_H ucSplitLine_H28;
private UCSplitLine_V ucSplitLine_V28;
private System.Windows.Forms.Panel panel27;
private System.Windows.Forms.Label label27;
private UCSplitLine_H ucSplitLine_H27;
private UCSplitLine_V ucSplitLine_V27;
private System.Windows.Forms.Panel panel26;
private System.Windows.Forms.Label label26;
private UCSplitLine_H ucSplitLine_H26;
private UCSplitLine_V ucSplitLine_V26;
private System.Windows.Forms.Panel panel25;
private System.Windows.Forms.Label label25;
private UCSplitLine_H ucSplitLine_H25;
private System.Windows.Forms.Panel panel23;
private System.Windows.Forms.Label label23;
private UCSplitLine_H ucSplitLine_H23;
private UCSplitLine_V ucSplitLine_V23;
private System.Windows.Forms.Panel panel22;
private System.Windows.Forms.Label label22;
private UCSplitLine_H ucSplitLine_H22;
private UCSplitLine_V ucSplitLine_V22;
private System.Windows.Forms.Panel panel21;
private System.Windows.Forms.Label label21;
private UCSplitLine_H ucSplitLine_H21;
private UCSplitLine_V ucSplitLine_V21;
private System.Windows.Forms.Panel panel20;
private System.Windows.Forms.Label label20;
private UCSplitLine_H ucSplitLine_H20;
private UCSplitLine_V ucSplitLine_V20;
private System.Windows.Forms.Panel panel19;
private System.Windows.Forms.Label label19;
private UCSplitLine_H ucSplitLine_H19;
private UCSplitLine_V ucSplitLine_V19;
private System.Windows.Forms.Panel panel18;
private System.Windows.Forms.Label label18;
private UCSplitLine_H ucSplitLine_H18;
private UCSplitLine_V ucSplitLine_V18;
private System.Windows.Forms.Panel panel17;
private System.Windows.Forms.Label label17;
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 UCSplitLine_V ucSplitLine_V16;
private System.Windows.Forms.Panel panel15;
private System.Windows.Forms.Label label15;
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 label13;
private UCSplitLine_H ucSplitLine_H13;
private UCSplitLine_V ucSplitLine_V13;
private System.Windows.Forms.Panel panel12;
private System.Windows.Forms.Label label12;
private UCSplitLine_H ucSplitLine_H12;
private UCSplitLine_V ucSplitLine_V12;
private System.Windows.Forms.Panel panel11;
private System.Windows.Forms.Label label11;
private UCSplitLine_H ucSplitLine_H11;
private UCSplitLine_V ucSplitLine_V11;
private System.Windows.Forms.Panel panel10;
private System.Windows.Forms.Label label10;
private UCSplitLine_H ucSplitLine_H10;
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 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_V4;
private UCSplitLine_V ucSplitLine_V14;
private UCSplitLine_H ucSplitLine_H24;
private UCSplitLine_H ucSplitLine_H31;
}
}

设计效果

用处及效果

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

最后的话

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

(十四)c#Winform自定义控件-键盘(一)的更多相关文章

  1. (三十)c#Winform自定义控件-文本框(三)

    前提 入行已经7,8年了,一直想做一套漂亮点的自定义控件,于是就有了本系列文章. 开源地址:https://gitee.com/kwwwvagaa/net_winform_custom_control ...

  2. (二十)c#Winform自定义控件-有后退的窗体

    前提 入行已经7,8年了,一直想做一套漂亮点的自定义控件,于是就有了本系列文章. 开源地址:https://gitee.com/kwwwvagaa/net_winform_custom_control ...

  3. (五十)c#Winform自定义控件-滑块

    前提 入行已经7,8年了,一直想做一套漂亮点的自定义控件,于是就有了本系列文章. GitHub:https://github.com/kwwwvagaa/NetWinformControl 码云:ht ...

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

    前提 入行已经7,8年了,一直想做一套漂亮点的自定义控件,于是就有了本系列文章. 开源地址:https://gitee.com/kwwwvagaa/net_winform_custom_control ...

  5. (四十)c#Winform自定义控件-开关-HZHControls

    官网 http://www.hzhcontrols.com 前提 入行已经7,8年了,一直想做一套漂亮点的自定义控件,于是就有了本系列文章. GitHub:https://github.com/kww ...

  6. Python+Selenium笔记(十四)鼠标与键盘事件

     (一) 前言 Webdriver高级应用的API,允许我们模拟简单到复杂的键盘和鼠标事件,如拖拽操作.快捷键组合.长按以及鼠标右键操作,都是通过使用webdriver的Python API 中的Ac ...

  7. (十)c#Winform自定义控件-横向列表

    前提 入行已经7,8年了,一直想做一套漂亮点的自定义控件,于是就有了本系列文章. 开源地址:https://gitee.com/kwwwvagaa/net_winform_custom_control ...

  8. (六十)c#Winform自定义控件-鼓风机(工业)

    前提 入行已经7,8年了,一直想做一套漂亮点的自定义控件,于是就有了本系列文章. GitHub:https://github.com/kwwwvagaa/NetWinformControl 码云:ht ...

  9. (七十)c#Winform自定义控件-饼状图

    前提 入行已经7,8年了,一直想做一套漂亮点的自定义控件,于是就有了本系列文章. GitHub:https://github.com/kwwwvagaa/NetWinformControl 码云:ht ...

随机推荐

  1. Java第五次作业--面向对象高级特性(抽象类与接口)

    Java第五次作业--面向对象高级特性(抽象类与接口) (一)学习总结 1.在上周完成的思维导图基础上,补充本周的学习内容,对Java面向对象编程的知识点做一个全面的总结. 2.汽车租赁公司,出租汽车 ...

  2. 基于SpringBoot的Web API快速开发基础框架

    其实还是很因为懒,才会有这个案例项目的产生,每次开启一个终端的小服务都要整理一次框架,造成重复的.不必要的.缺乏创造性的劳动,SO,本着可以用.用着简单的原则上传代码到Github,希望有需要的朋友直 ...

  3. Mysql两张表的关联字段不一致

    工作中遇到了一个问题,邮件系统群发失败,后来经过排查查找到了原因 原来是因为mysql中的两张表的关联字段竟然不一致, 表A mysql> desc rm_user_router;+------ ...

  4. Excel催化剂开源第13波-VSTO开发之DataGridView控件几个小坑

    Excel催化剂内部大量使用了DataGridView,这其中有一些小坑,花了力气才解决的,在此给广大开发者作简单分享. 为何要使用DataGridView而不是其他控件如ListBox.ListVi ...

  5. mysql8.0.15创建数据库和是删除数据库及删除用户

    ---恢复内容开始--- 版权声明:署名,允许他人基于本文进行创作,且必须基于与原先许可协议相同的许可协议分发本文 (Creative Commons) 1.首先安装mysql8.0.15 2.Mys ...

  6. 【数据结构】B树、B+树详解

    B树 前言 首先,为什么要总结B树.B+树的知识呢?最近在学习数据库索引调优相关知识,数据库系统普遍采用B-/+Tree作为索引结构(例如mysql的InnoDB引擎使用的B+树),理解不透彻B树,则 ...

  7. Windows 使用 helm3 和 kubectl

    简介: 主要原因是,我不会 vim ,在 linux 上修改 charts 的很蹩脚,所以就想着能不能再 windows 上执行 helm 命令,将 charts install linux 上搭建的 ...

  8. python3 导入包总提示no moudle named xxx

    一.python中的包有三种 1.python自带的包,如sys, os 2.python的第三方库,如 requests, selenium 3.自己写的.py文件 二.今天主要说下导入自己写的包 ...

  9. 10w数组去重,排序,找最多出现次数(精华)

    package cn.tedu.javaweb.test; import java.util.*; /* * @author XueWeiWei * @date 2019/6/11 8:19 */@S ...

  10. VS、C#配置R语言开发环境

    R语言学习笔记(一)——在Vs.C#中配置R语言开发环境. 最近在学习小众的R语言,所以将遇到的问题记录下来供大家参考,不足之处欢迎大家交流指正. 至于R语言的介绍就不多说了,它集成了复杂的数学算法, ...