前提

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

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

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

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

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

目录

https://blog.csdn.net/kwwwvagaa/article/details/100586547

用处及效果

准备工作

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

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

本篇文章介绍英文键盘

开始

添加用户控件,命名UCKeyBorderAll

定义枚举,显示模式

1 public enum KeyBorderCharType
2     {
3         CHAR = 1,
4         NUMBER = 2
5     }

属性

 1  private KeyBorderCharType _charType = KeyBorderCharType.CHAR;2 3         [Description("默认显示样式"), Category("自定义")]4         public KeyBorderCharType CharType5         {6             get { return _charType; }7             set8             {9                 _charType = value;
10                 if (value == KeyBorderCharType.CHAR)
11                 {
12                     if (label37.Text.ToLower() == "abc.")
13                     {
14                         CharOrNum();
15                     }
16                 }
17                 else
18                 {
19                     if (label37.Text.ToLower() == "?123")
20                     {
21                         CharOrNum();
22                     }
23                 }
24             }
25         }
26         [Description("按键点击事件"), Category("自定义")]
27         public event EventHandler KeyClick;
28         [Description("回车点击事件"), Category("自定义")]
29         public event EventHandler EnterClick;
30         [Description("删除点击事件"), Category("自定义")]
31         public event EventHandler BackspaceClike;
32         [Description("收起点击事件"), Category("自定义")]
33         public event EventHandler RetractClike;

按钮事件

 1 private void KeyDown_MouseDown(object sender, MouseEventArgs e)2         {3             Label lbl = sender as Label;4             if (string.IsNullOrEmpty(lbl.Text))5             {6                 return;7             }8             if (lbl.Text == "大写")9             {
10                 ToUper(true);
11                 lbl.Text = "小写";
12             }
13             else if (lbl.Text == "小写")
14             {
15                 ToUper(false);
16                 lbl.Text = "大写";
17             }
18             else if (lbl.Text == "?123" || lbl.Text == "abc.")
19             {
20                 CharOrNum();
21             }
22             else if (lbl.Text == "空格")
23             {
24                 SendKeys.Send(" ");
25             }
26             else if (lbl.Text == "删除")
27             {
28                 SendKeys.Send("{BACKSPACE}");
29                 if (BackspaceClike != null)
30                     BackspaceClike(sender, e);
31             }
32             else if (lbl.Text == "回车")
33             {
34                 SendKeys.Send("{ENTER}");
35                 if (EnterClick != null)
36                     EnterClick(sender, e);
37             }
38             else if (lbl.Text == "收起")
39             {
40                 if (RetractClike != null)
41                     RetractClike(sender, e);
42             }
43             else
44             {
45                 SendKeys.Send(lbl.Text);
46             }
47             if (KeyClick != null)
48                 KeyClick(sender, e);
49         }

辅助函数

 1 private void ToUper(bool bln)2         {3             foreach (Control item in this.tableLayoutPanel2.Controls)4             {5                 if (item is Panel)6                 {7                     foreach (Control pc in item.Controls)8                     {9                         if (pc is Label)
10                         {
11                             if (pc.Text == "abc.")
12                                 break;
13                             if (bln)
14                             {
15                                 pc.Text = pc.Text.ToUpper();
16                             }
17                             else
18                             {
19                                 pc.Text = pc.Text.ToLower();
20                             }
21                             break;
22                         }
23                     }
24                 }
25             }
26         }
27
28         private void CharOrNum()
29         {
30             foreach (Control item in this.tableLayoutPanel2.Controls)
31             {
32                 if (item is Panel)
33                 {
34                     foreach (Control pc in item.Controls)
35                     {
36                         if (pc is Label)
37                         {
38                             string strTag = pc.Text;
39                             pc.Text = pc.Tag.ToString();
40                             pc.Tag = strTag;
41                             break;
42                         }
43                     }
44                 }
45             }
46         }

这样一个键盘就完成了

看下完整代码

// 版权所有  黄正辉  交流群: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 = 1,NUMBER = 2}
}
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 = 10;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, 2, 3);this.tableLayoutPanel2.Controls.Add(this.panel37, 0, 3);this.tableLayoutPanel2.Controls.Add(this.panel36, 1, 3);this.tableLayoutPanel2.Controls.Add(this.panel35, 8, 3);this.tableLayoutPanel2.Controls.Add(this.panel33, 7, 3);this.tableLayoutPanel2.Controls.Add(this.panel30, 3, 2);this.tableLayoutPanel2.Controls.Add(this.panel29, 4, 2);this.tableLayoutPanel2.Controls.Add(this.panel28, 2, 2);this.tableLayoutPanel2.Controls.Add(this.panel27, 0, 2);this.tableLayoutPanel2.Controls.Add(this.panel26, 1, 2);this.tableLayoutPanel2.Controls.Add(this.panel25, 8, 2);this.tableLayoutPanel2.Controls.Add(this.panel23, 7, 2);this.tableLayoutPanel2.Controls.Add(this.panel22, 5, 2);this.tableLayoutPanel2.Controls.Add(this.panel21, 6, 2);this.tableLayoutPanel2.Controls.Add(this.panel20, 3, 1);this.tableLayoutPanel2.Controls.Add(this.panel19, 4, 1);this.tableLayoutPanel2.Controls.Add(this.panel18, 2, 1);this.tableLayoutPanel2.Controls.Add(this.panel17, 0, 1);this.tableLayoutPanel2.Controls.Add(this.panel16, 1, 1);this.tableLayoutPanel2.Controls.Add(this.panel15, 8, 1);this.tableLayoutPanel2.Controls.Add(this.panel14, 9, 1);this.tableLayoutPanel2.Controls.Add(this.panel13, 7, 1);this.tableLayoutPanel2.Controls.Add(this.panel12, 5, 1);this.tableLayoutPanel2.Controls.Add(this.panel11, 6, 1);this.tableLayoutPanel2.Controls.Add(this.panel10, 4, 0);this.tableLayoutPanel2.Controls.Add(this.panel9, 3, 0);this.tableLayoutPanel2.Controls.Add(this.panel8, 2, 0);this.tableLayoutPanel2.Controls.Add(this.panel7, 0, 0);this.tableLayoutPanel2.Controls.Add(this.panel6, 1, 0);this.tableLayoutPanel2.Controls.Add(this.panel5, 8, 0);this.tableLayoutPanel2.Controls.Add(this.panel4, 9, 0);this.tableLayoutPanel2.Controls.Add(this.panel3, 7, 0);this.tableLayoutPanel2.Controls.Add(this.panel2, 5, 0);this.tableLayoutPanel2.Controls.Add(this.panel1, 6, 0);this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;this.tableLayoutPanel2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.tableLayoutPanel2.Location = new System.Drawing.Point(1, 1);this.tableLayoutPanel2.Margin = new System.Windows.Forms.Padding(0);this.tableLayoutPanel2.Name = "tableLayoutPanel2";this.tableLayoutPanel2.RowCount = 4;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(669, 271);this.tableLayoutPanel2.TabIndex = 1;// // panel39// this.tableLayoutPanel2.SetColumnSpan(this.panel39, 5);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)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.panel39.Location = new System.Drawing.Point(132, 201);this.panel39.Margin = new System.Windows.Forms.Padding(0);this.panel39.Name = "panel39";this.panel39.Size = new System.Drawing.Size(330, 70);this.panel39.TabIndex = 39;// // 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)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label39.Location = new System.Drawing.Point(0, 0);this.label39.Name = "label39";this.label39.Size = new System.Drawing.Size(329, 70);this.label39.TabIndex = 2;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)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V39.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V39.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_V39.Location = new System.Drawing.Point(329, 0);this.ucSplitLine_V39.Name = "ucSplitLine_V39";this.ucSplitLine_V39.Size = new System.Drawing.Size(1, 70);this.ucSplitLine_V39.TabIndex = 0;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)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.panel37.Location = new System.Drawing.Point(0, 201);this.panel37.Margin = new System.Windows.Forms.Padding(0);this.panel37.Name = "panel37";this.panel37.Size = new System.Drawing.Size(66, 70);this.panel37.TabIndex = 37;// // 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)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label37.Location = new System.Drawing.Point(0, 0);this.label37.Name = "label37";this.label37.Size = new System.Drawing.Size(65, 70);this.label37.TabIndex = 2;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)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V37.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V37.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_V37.Location = new System.Drawing.Point(65, 0);this.ucSplitLine_V37.Name = "ucSplitLine_V37";this.ucSplitLine_V37.Size = new System.Drawing.Size(1, 70);this.ucSplitLine_V37.TabIndex = 0;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)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.panel36.Location = new System.Drawing.Point(66, 201);this.panel36.Margin = new System.Windows.Forms.Padding(0);this.panel36.Name = "panel36";this.panel36.Size = new System.Drawing.Size(66, 70);this.panel36.TabIndex = 36;// // 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)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label36.Location = new System.Drawing.Point(0, 0);this.label36.Name = "label36";this.label36.Size = new System.Drawing.Size(65, 70);this.label36.TabIndex = 2;this.label36.Tag = "0";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)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V36.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V36.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_V36.Location = new System.Drawing.Point(65, 0);this.ucSplitLine_V36.Name = "ucSplitLine_V36";this.ucSplitLine_V36.Size = new System.Drawing.Size(1, 70);this.ucSplitLine_V36.TabIndex = 0;this.ucSplitLine_V36.TabStop = false;// // panel35// this.tableLayoutPanel2.SetColumnSpan(this.panel35, 2);this.panel35.Controls.Add(this.label35);this.panel35.Dock = System.Windows.Forms.DockStyle.Fill;this.panel35.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.panel35.Location = new System.Drawing.Point(528, 201);this.panel35.Margin = new System.Windows.Forms.Padding(0);this.panel35.Name = "panel35";this.panel35.Size = new System.Drawing.Size(141, 70);this.panel35.TabIndex = 35;// // 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)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label35.Location = new System.Drawing.Point(0, 0);this.label35.Name = "label35";this.label35.Size = new System.Drawing.Size(141, 70);this.label35.TabIndex = 2;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)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.panel33.Location = new System.Drawing.Point(462, 201);this.panel33.Margin = new System.Windows.Forms.Padding(0);this.panel33.Name = "panel33";this.panel33.Size = new System.Drawing.Size(66, 70);this.panel33.TabIndex = 33;// // 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)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label33.Location = new System.Drawing.Point(0, 0);this.label33.Name = "label33";this.label33.Size = new System.Drawing.Size(65, 70);this.label33.TabIndex = 2;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)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V33.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V33.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_V33.Location = new System.Drawing.Point(65, 0);this.ucSplitLine_V33.Name = "ucSplitLine_V33";this.ucSplitLine_V33.Size = new System.Drawing.Size(1, 70);this.ucSplitLine_V33.TabIndex = 0;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)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.panel30.Location = new System.Drawing.Point(198, 134);this.panel30.Margin = new System.Windows.Forms.Padding(0);this.panel30.Name = "panel30";this.panel30.Size = new System.Drawing.Size(66, 67);this.panel30.TabIndex = 30;// // 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)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label30.Location = new System.Drawing.Point(0, 0);this.label30.Name = "label30";this.label30.Size = new System.Drawing.Size(65, 66);this.label30.TabIndex = 2;this.label30.Tag = "3";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)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H30.Dock = System.Windows.Forms.DockStyle.Bottom;this.ucSplitLine_H30.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_H30.Location = new System.Drawing.Point(0, 66);this.ucSplitLine_H30.Name = "ucSplitLine_H30";this.ucSplitLine_H30.Size = new System.Drawing.Size(65, 1);this.ucSplitLine_H30.TabIndex = 1;this.ucSplitLine_H30.TabStop = false;// // ucSplitLine_V30// this.ucSplitLine_V30.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V30.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V30.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_V30.Location = new System.Drawing.Point(65, 0);this.ucSplitLine_V30.Name = "ucSplitLine_V30";this.ucSplitLine_V30.Size = new System.Drawing.Size(1, 67);this.ucSplitLine_V30.TabIndex = 0;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)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.panel29.Location = new System.Drawing.Point(264, 134);this.panel29.Margin = new System.Windows.Forms.Padding(0);this.panel29.Name = "panel29";this.panel29.Size = new System.Drawing.Size(66, 67);this.panel29.TabIndex = 29;// // 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)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label29.Location = new System.Drawing.Point(0, 0);this.label29.Name = "label29";this.label29.Size = new System.Drawing.Size(65, 66);this.label29.TabIndex = 2;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)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H29.Dock = System.Windows.Forms.DockStyle.Bottom;this.ucSplitLine_H29.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_H29.Location = new System.Drawing.Point(0, 66);this.ucSplitLine_H29.Name = "ucSplitLine_H29";this.ucSplitLine_H29.Size = new System.Drawing.Size(65, 1);this.ucSplitLine_H29.TabIndex = 1;this.ucSplitLine_H29.TabStop = false;// // ucSplitLine_V29// this.ucSplitLine_V29.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V29.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V29.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_V29.Location = new System.Drawing.Point(65, 0);this.ucSplitLine_V29.Name = "ucSplitLine_V29";this.ucSplitLine_V29.Size = new System.Drawing.Size(1, 67);this.ucSplitLine_V29.TabIndex = 0;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)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.panel28.Location = new System.Drawing.Point(132, 134);this.panel28.Margin = new System.Windows.Forms.Padding(0);this.panel28.Name = "panel28";this.panel28.Size = new System.Drawing.Size(66, 67);this.panel28.TabIndex = 28;// // 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)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label28.Location = new System.Drawing.Point(0, 0);this.label28.Name = "label28";this.label28.Size = new System.Drawing.Size(65, 66);this.label28.TabIndex = 2;this.label28.Tag = "2";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)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H28.Dock = System.Windows.Forms.DockStyle.Bottom;this.ucSplitLine_H28.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_H28.Location = new System.Drawing.Point(0, 66);this.ucSplitLine_H28.Name = "ucSplitLine_H28";this.ucSplitLine_H28.Size = new System.Drawing.Size(65, 1);this.ucSplitLine_H28.TabIndex = 1;this.ucSplitLine_H28.TabStop = false;// // ucSplitLine_V28// this.ucSplitLine_V28.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V28.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V28.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_V28.Location = new System.Drawing.Point(65, 0);this.ucSplitLine_V28.Name = "ucSplitLine_V28";this.ucSplitLine_V28.Size = new System.Drawing.Size(1, 67);this.ucSplitLine_V28.TabIndex = 0;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)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.panel27.Location = new System.Drawing.Point(0, 134);this.panel27.Margin = new System.Windows.Forms.Padding(0);this.panel27.Name = "panel27";this.panel27.Size = new System.Drawing.Size(66, 67);this.panel27.TabIndex = 27;// // 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)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label27.Location = new System.Drawing.Point(0, 0);this.label27.Name = "label27";this.label27.Size = new System.Drawing.Size(65, 66);this.label27.TabIndex = 2;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)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H27.Dock = System.Windows.Forms.DockStyle.Bottom;this.ucSplitLine_H27.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_H27.Location = new System.Drawing.Point(0, 66);this.ucSplitLine_H27.Name = "ucSplitLine_H27";this.ucSplitLine_H27.Size = new System.Drawing.Size(65, 1);this.ucSplitLine_H27.TabIndex = 1;this.ucSplitLine_H27.TabStop = false;// // ucSplitLine_V27// this.ucSplitLine_V27.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V27.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V27.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_V27.Location = new System.Drawing.Point(65, 0);this.ucSplitLine_V27.Name = "ucSplitLine_V27";this.ucSplitLine_V27.Size = new System.Drawing.Size(1, 67);this.ucSplitLine_V27.TabIndex = 0;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)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.panel26.Location = new System.Drawing.Point(66, 134);this.panel26.Margin = new System.Windows.Forms.Padding(0);this.panel26.Name = "panel26";this.panel26.Size = new System.Drawing.Size(66, 67);this.panel26.TabIndex = 26;// // 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)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label26.Location = new System.Drawing.Point(0, 0);this.label26.Name = "label26";this.label26.Size = new System.Drawing.Size(65, 66);this.label26.TabIndex = 2;this.label26.Tag = "1";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)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H26.Dock = System.Windows.Forms.DockStyle.Bottom;this.ucSplitLine_H26.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_H26.Location = new System.Drawing.Point(0, 66);this.ucSplitLine_H26.Name = "ucSplitLine_H26";this.ucSplitLine_H26.Size = new System.Drawing.Size(65, 1);this.ucSplitLine_H26.TabIndex = 1;this.ucSplitLine_H26.TabStop = false;// // ucSplitLine_V26// this.ucSplitLine_V26.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V26.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V26.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_V26.Location = new System.Drawing.Point(65, 0);this.ucSplitLine_V26.Name = "ucSplitLine_V26";this.ucSplitLine_V26.Size = new System.Drawing.Size(1, 67);this.ucSplitLine_V26.TabIndex = 0;this.ucSplitLine_V26.TabStop = false;// // panel25// this.tableLayoutPanel2.SetColumnSpan(this.panel25, 2);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)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.panel25.Location = new System.Drawing.Point(528, 134);this.panel25.Margin = new System.Windows.Forms.Padding(0);this.panel25.Name = "panel25";this.panel25.Size = new System.Drawing.Size(141, 67);this.panel25.TabIndex = 25;// // 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)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label25.Location = new System.Drawing.Point(0, 0);this.label25.Name = "label25";this.label25.Size = new System.Drawing.Size(141, 66);this.label25.TabIndex = 2;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)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H25.Dock = System.Windows.Forms.DockStyle.Bottom;this.ucSplitLine_H25.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_H25.Location = new System.Drawing.Point(0, 66);this.ucSplitLine_H25.Name = "ucSplitLine_H25";this.ucSplitLine_H25.Size = new System.Drawing.Size(141, 1);this.ucSplitLine_H25.TabIndex = 1;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)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.panel23.Location = new System.Drawing.Point(462, 134);this.panel23.Margin = new System.Windows.Forms.Padding(0);this.panel23.Name = "panel23";this.panel23.Size = new System.Drawing.Size(66, 67);this.panel23.TabIndex = 23;// // 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)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label23.Location = new System.Drawing.Point(0, 0);this.label23.Name = "label23";this.label23.Size = new System.Drawing.Size(65, 66);this.label23.TabIndex = 2;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)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H23.Dock = System.Windows.Forms.DockStyle.Bottom;this.ucSplitLine_H23.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_H23.Location = new System.Drawing.Point(0, 66);this.ucSplitLine_H23.Name = "ucSplitLine_H23";this.ucSplitLine_H23.Size = new System.Drawing.Size(65, 1);this.ucSplitLine_H23.TabIndex = 1;this.ucSplitLine_H23.TabStop = false;// // ucSplitLine_V23// this.ucSplitLine_V23.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V23.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V23.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_V23.Location = new System.Drawing.Point(65, 0);this.ucSplitLine_V23.Name = "ucSplitLine_V23";this.ucSplitLine_V23.Size = new System.Drawing.Size(1, 67);this.ucSplitLine_V23.TabIndex = 0;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)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.panel22.Location = new System.Drawing.Point(330, 134);this.panel22.Margin = new System.Windows.Forms.Padding(0);this.panel22.Name = "panel22";this.panel22.Size = new System.Drawing.Size(66, 67);this.panel22.TabIndex = 22;// // 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)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label22.Location = new System.Drawing.Point(0, 0);this.label22.Name = "label22";this.label22.Size = new System.Drawing.Size(65, 66);this.label22.TabIndex = 2;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)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H22.Dock = System.Windows.Forms.DockStyle.Bottom;this.ucSplitLine_H22.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_H22.Location = new System.Drawing.Point(0, 66);this.ucSplitLine_H22.Name = "ucSplitLine_H22";this.ucSplitLine_H22.Size = new System.Drawing.Size(65, 1);this.ucSplitLine_H22.TabIndex = 1;this.ucSplitLine_H22.TabStop = false;// // ucSplitLine_V22// this.ucSplitLine_V22.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V22.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V22.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_V22.Location = new System.Drawing.Point(65, 0);this.ucSplitLine_V22.Name = "ucSplitLine_V22";this.ucSplitLine_V22.Size = new System.Drawing.Size(1, 67);this.ucSplitLine_V22.TabIndex = 0;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)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.panel21.Location = new System.Drawing.Point(396, 134);this.panel21.Margin = new System.Windows.Forms.Padding(0);this.panel21.Name = "panel21";this.panel21.Size = new System.Drawing.Size(66, 67);this.panel21.TabIndex = 21;// // 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)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label21.Location = new System.Drawing.Point(0, 0);this.label21.Name = "label21";this.label21.Size = new System.Drawing.Size(65, 66);this.label21.TabIndex = 2;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)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H21.Dock = System.Windows.Forms.DockStyle.Bottom;this.ucSplitLine_H21.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_H21.Location = new System.Drawing.Point(0, 66);this.ucSplitLine_H21.Name = "ucSplitLine_H21";this.ucSplitLine_H21.Size = new System.Drawing.Size(65, 1);this.ucSplitLine_H21.TabIndex = 1;this.ucSplitLine_H21.TabStop = false;// // ucSplitLine_V21// this.ucSplitLine_V21.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V21.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V21.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_V21.Location = new System.Drawing.Point(65, 0);this.ucSplitLine_V21.Name = "ucSplitLine_V21";this.ucSplitLine_V21.Size = new System.Drawing.Size(1, 67);this.ucSplitLine_V21.TabIndex = 0;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)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.panel20.Location = new System.Drawing.Point(198, 67);this.panel20.Margin = new System.Windows.Forms.Padding(0);this.panel20.Name = "panel20";this.panel20.Size = new System.Drawing.Size(66, 67);this.panel20.TabIndex = 20;// // 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)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label20.Location = new System.Drawing.Point(0, 0);this.label20.Name = "label20";this.label20.Size = new System.Drawing.Size(65, 66);this.label20.TabIndex = 2;this.label20.Tag = "6";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)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H20.Dock = System.Windows.Forms.DockStyle.Bottom;this.ucSplitLine_H20.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_H20.Location = new System.Drawing.Point(0, 66);this.ucSplitLine_H20.Name = "ucSplitLine_H20";this.ucSplitLine_H20.Size = new System.Drawing.Size(65, 1);this.ucSplitLine_H20.TabIndex = 1;this.ucSplitLine_H20.TabStop = false;// // ucSplitLine_V20// this.ucSplitLine_V20.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V20.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V20.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_V20.Location = new System.Drawing.Point(65, 0);this.ucSplitLine_V20.Name = "ucSplitLine_V20";this.ucSplitLine_V20.Size = new System.Drawing.Size(1, 67);this.ucSplitLine_V20.TabIndex = 0;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)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.panel19.Location = new System.Drawing.Point(264, 67);this.panel19.Margin = new System.Windows.Forms.Padding(0);this.panel19.Name = "panel19";this.panel19.Size = new System.Drawing.Size(66, 67);this.panel19.TabIndex = 19;// // 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)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label19.Location = new System.Drawing.Point(0, 0);this.label19.Name = "label19";this.label19.Size = new System.Drawing.Size(65, 66);this.label19.TabIndex = 2;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)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H19.Dock = System.Windows.Forms.DockStyle.Bottom;this.ucSplitLine_H19.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_H19.Location = new System.Drawing.Point(0, 66);this.ucSplitLine_H19.Name = "ucSplitLine_H19";this.ucSplitLine_H19.Size = new System.Drawing.Size(65, 1);this.ucSplitLine_H19.TabIndex = 1;this.ucSplitLine_H19.TabStop = false;// // ucSplitLine_V19// this.ucSplitLine_V19.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V19.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V19.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_V19.Location = new System.Drawing.Point(65, 0);this.ucSplitLine_V19.Name = "ucSplitLine_V19";this.ucSplitLine_V19.Size = new System.Drawing.Size(1, 67);this.ucSplitLine_V19.TabIndex = 0;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)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.panel18.Location = new System.Drawing.Point(132, 67);this.panel18.Margin = new System.Windows.Forms.Padding(0);this.panel18.Name = "panel18";this.panel18.Size = new System.Drawing.Size(66, 67);this.panel18.TabIndex = 18;// // 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)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label18.Location = new System.Drawing.Point(0, 0);this.label18.Name = "label18";this.label18.Size = new System.Drawing.Size(65, 66);this.label18.TabIndex = 2;this.label18.Tag = "5";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)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H18.Dock = System.Windows.Forms.DockStyle.Bottom;this.ucSplitLine_H18.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_H18.Location = new System.Drawing.Point(0, 66);this.ucSplitLine_H18.Name = "ucSplitLine_H18";this.ucSplitLine_H18.Size = new System.Drawing.Size(65, 1);this.ucSplitLine_H18.TabIndex = 1;this.ucSplitLine_H18.TabStop = false;// // ucSplitLine_V18// this.ucSplitLine_V18.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V18.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V18.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_V18.Location = new System.Drawing.Point(65, 0);this.ucSplitLine_V18.Name = "ucSplitLine_V18";this.ucSplitLine_V18.Size = new System.Drawing.Size(1, 67);this.ucSplitLine_V18.TabIndex = 0;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)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.panel17.Location = new System.Drawing.Point(0, 67);this.panel17.Margin = new System.Windows.Forms.Padding(0);this.panel17.Name = "panel17";this.panel17.Size = new System.Drawing.Size(66, 67);this.panel17.TabIndex = 17;// // 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)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label17.Location = new System.Drawing.Point(0, 0);this.label17.Name = "label17";this.label17.Size = new System.Drawing.Size(65, 66);this.label17.TabIndex = 2;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)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H17.Dock = System.Windows.Forms.DockStyle.Bottom;this.ucSplitLine_H17.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_H17.Location = new System.Drawing.Point(0, 66);this.ucSplitLine_H17.Name = "ucSplitLine_H17";this.ucSplitLine_H17.Size = new System.Drawing.Size(65, 1);this.ucSplitLine_H17.TabIndex = 1;this.ucSplitLine_H17.TabStop = false;// // ucSplitLine_V17// this.ucSplitLine_V17.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V17.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V17.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_V17.Location = new System.Drawing.Point(65, 0);this.ucSplitLine_V17.Name = "ucSplitLine_V17";this.ucSplitLine_V17.Size = new System.Drawing.Size(1, 67);this.ucSplitLine_V17.TabIndex = 0;this.ucSplitLine_V17.TabStop = false;// // panel16// this.panel16.Controls.Add(this.label16);this.panel16.Controls.Add(this.ucSplitLine_H16);this.panel16.Controls.Add(this.ucSplitLine_V16);this.panel16.Dock = System.Windows.Forms.DockStyle.Fill;this.panel16.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.panel16.Location = new System.Drawing.Point(66, 67);this.panel16.Margin = new System.Windows.Forms.Padding(0);this.panel16.Name = "panel16";this.panel16.Size = new System.Drawing.Size(66, 67);this.panel16.TabIndex = 16;// // 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)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label16.Location = new System.Drawing.Point(0, 0);this.label16.Name = "label16";this.label16.Size = new System.Drawing.Size(65, 66);this.label16.TabIndex = 2;this.label16.Tag = "4";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)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H16.Dock = System.Windows.Forms.DockStyle.Bottom;this.ucSplitLine_H16.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_H16.Location = new System.Drawing.Point(0, 66);this.ucSplitLine_H16.Name = "ucSplitLine_H16";this.ucSplitLine_H16.Size = new System.Drawing.Size(65, 1);this.ucSplitLine_H16.TabIndex = 1;this.ucSplitLine_H16.TabStop = false;// // ucSplitLine_V16// this.ucSplitLine_V16.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V16.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V16.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_V16.Location = new System.Drawing.Point(65, 0);this.ucSplitLine_V16.Name = "ucSplitLine_V16";this.ucSplitLine_V16.Size = new System.Drawing.Size(1, 67);this.ucSplitLine_V16.TabIndex = 0;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)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.panel15.Location = new System.Drawing.Point(528, 67);this.panel15.Margin = new System.Windows.Forms.Padding(0);this.panel15.Name = "panel15";this.panel15.Size = new System.Drawing.Size(66, 67);this.panel15.TabIndex = 15;// // 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)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label15.Location = new System.Drawing.Point(0, 0);this.label15.Name = "label15";this.label15.Size = new System.Drawing.Size(65, 66);this.label15.TabIndex = 2;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)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H15.Dock = System.Windows.Forms.DockStyle.Bottom;this.ucSplitLine_H15.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_H15.Location = new System.Drawing.Point(0, 66);this.ucSplitLine_H15.Name = "ucSplitLine_H15";this.ucSplitLine_H15.Size = new System.Drawing.Size(65, 1);this.ucSplitLine_H15.TabIndex = 1;this.ucSplitLine_H15.TabStop = false;// // ucSplitLine_V15// this.ucSplitLine_V15.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V15.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V15.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_V15.Location = new System.Drawing.Point(65, 0);this.ucSplitLine_V15.Name = "ucSplitLine_V15";this.ucSplitLine_V15.Size = new System.Drawing.Size(1, 67);this.ucSplitLine_V15.TabIndex = 0;this.ucSplitLine_V15.TabStop = false;// // panel14// this.panel14.Controls.Add(this.label14);this.panel14.Controls.Add(this.ucSplitLine_H14);this.panel14.Dock = System.Windows.Forms.DockStyle.Fill;this.panel14.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.panel14.Location = new System.Drawing.Point(594, 67);this.panel14.Margin = new System.Windows.Forms.Padding(0);this.panel14.Name = "panel14";this.panel14.Size = new System.Drawing.Size(75, 67);this.panel14.TabIndex = 14;// // 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)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label14.Location = new System.Drawing.Point(0, 0);this.label14.Name = "label14";this.label14.Size = new System.Drawing.Size(75, 66);this.label14.TabIndex = 2;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)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H14.Dock = System.Windows.Forms.DockStyle.Bottom;this.ucSplitLine_H14.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_H14.Location = new System.Drawing.Point(0, 66);this.ucSplitLine_H14.Name = "ucSplitLine_H14";this.ucSplitLine_H14.Size = new System.Drawing.Size(75, 1);this.ucSplitLine_H14.TabIndex = 1;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)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.panel13.Location = new System.Drawing.Point(462, 67);this.panel13.Margin = new System.Windows.Forms.Padding(0);this.panel13.Name = "panel13";this.panel13.Size = new System.Drawing.Size(66, 67);this.panel13.TabIndex = 13;// // label13// this.label13.Dock = System.Windows.Forms.DockStyle.Fill;this.label13.Font = new System.Drawing.Font("Arial Unicode MS", 30F);this.label13.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label13.Location = new System.Drawing.Point(0, 0);this.label13.Name = "label13";this.label13.Size = new System.Drawing.Size(65, 66);this.label13.TabIndex = 2;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)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H13.Dock = System.Windows.Forms.DockStyle.Bottom;this.ucSplitLine_H13.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_H13.Location = new System.Drawing.Point(0, 66);this.ucSplitLine_H13.Name = "ucSplitLine_H13";this.ucSplitLine_H13.Size = new System.Drawing.Size(65, 1);this.ucSplitLine_H13.TabIndex = 1;this.ucSplitLine_H13.TabStop = false;// // ucSplitLine_V13// this.ucSplitLine_V13.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V13.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V13.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_V13.Location = new System.Drawing.Point(65, 0);this.ucSplitLine_V13.Name = "ucSplitLine_V13";this.ucSplitLine_V13.Size = new System.Drawing.Size(1, 67);this.ucSplitLine_V13.TabIndex = 0;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)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.panel12.Location = new System.Drawing.Point(330, 67);this.panel12.Margin = new System.Windows.Forms.Padding(0);this.panel12.Name = "panel12";this.panel12.Size = new System.Drawing.Size(66, 67);this.panel12.TabIndex = 12;// // label12// this.label12.Dock = System.Windows.Forms.DockStyle.Fill;this.label12.Font = new System.Drawing.Font("Arial Unicode MS", 30F);this.label12.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label12.Location = new System.Drawing.Point(0, 0);this.label12.Name = "label12";this.label12.Size = new System.Drawing.Size(65, 66);this.label12.TabIndex = 2;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)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H12.Dock = System.Windows.Forms.DockStyle.Bottom;this.ucSplitLine_H12.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_H12.Location = new System.Drawing.Point(0, 66);this.ucSplitLine_H12.Name = "ucSplitLine_H12";this.ucSplitLine_H12.Size = new System.Drawing.Size(65, 1);this.ucSplitLine_H12.TabIndex = 1;this.ucSplitLine_H12.TabStop = false;// // ucSplitLine_V12// this.ucSplitLine_V12.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V12.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V12.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_V12.Location = new System.Drawing.Point(65, 0);this.ucSplitLine_V12.Name = "ucSplitLine_V12";this.ucSplitLine_V12.Size = new System.Drawing.Size(1, 67);this.ucSplitLine_V12.TabIndex = 0;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)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.panel11.Location = new System.Drawing.Point(396, 67);this.panel11.Margin = new System.Windows.Forms.Padding(0);this.panel11.Name = "panel11";this.panel11.Size = new System.Drawing.Size(66, 67);this.panel11.TabIndex = 11;// // label11// this.label11.Dock = System.Windows.Forms.DockStyle.Fill;this.label11.Font = new System.Drawing.Font("Arial Unicode MS", 30F);this.label11.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label11.Location = new System.Drawing.Point(0, 0);this.label11.Name = "label11";this.label11.Size = new System.Drawing.Size(65, 66);this.label11.TabIndex = 2;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)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H11.Dock = System.Windows.Forms.DockStyle.Bottom;this.ucSplitLine_H11.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_H11.Location = new System.Drawing.Point(0, 66);this.ucSplitLine_H11.Name = "ucSplitLine_H11";this.ucSplitLine_H11.Size = new System.Drawing.Size(65, 1);this.ucSplitLine_H11.TabIndex = 1;this.ucSplitLine_H11.TabStop = false;// // ucSplitLine_V11// this.ucSplitLine_V11.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V11.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V11.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_V11.Location = new System.Drawing.Point(65, 0);this.ucSplitLine_V11.Name = "ucSplitLine_V11";this.ucSplitLine_V11.Size = new System.Drawing.Size(1, 67);this.ucSplitLine_V11.TabIndex = 0;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)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.panel10.Location = new System.Drawing.Point(264, 0);this.panel10.Margin = new System.Windows.Forms.Padding(0);this.panel10.Name = "panel10";this.panel10.Size = new System.Drawing.Size(66, 67);this.panel10.TabIndex = 10;// // label10// this.label10.Dock = System.Windows.Forms.DockStyle.Fill;this.label10.Font = new System.Drawing.Font("Arial Unicode MS", 30F);this.label10.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label10.Location = new System.Drawing.Point(0, 0);this.label10.Name = "label10";this.label10.Size = new System.Drawing.Size(65, 66);this.label10.TabIndex = 2;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)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H10.Dock = System.Windows.Forms.DockStyle.Bottom;this.ucSplitLine_H10.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_H10.Location = new System.Drawing.Point(0, 66);this.ucSplitLine_H10.Name = "ucSplitLine_H10";this.ucSplitLine_H10.Size = new System.Drawing.Size(65, 1);this.ucSplitLine_H10.TabIndex = 1;this.ucSplitLine_H10.TabStop = false;// // ucSplitLine_V10// this.ucSplitLine_V10.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V10.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V10.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_V10.Location = new System.Drawing.Point(65, 0);this.ucSplitLine_V10.Name = "ucSplitLine_V10";this.ucSplitLine_V10.Size = new System.Drawing.Size(1, 67);this.ucSplitLine_V10.TabIndex = 0;this.ucSplitLine_V10.TabStop = false;// // panel9// this.panel9.Controls.Add(this.label9);this.panel9.Controls.Add(this.ucSplitLine_H9);this.panel9.Controls.Add(this.ucSplitLine_V9);this.panel9.Dock = System.Windows.Forms.DockStyle.Fill;this.panel9.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.panel9.Location = new System.Drawing.Point(198, 0);this.panel9.Margin = new System.Windows.Forms.Padding(0);this.panel9.Name = "panel9";this.panel9.Size = new System.Drawing.Size(66, 67);this.panel9.TabIndex = 9;// // label9// this.label9.Dock = System.Windows.Forms.DockStyle.Fill;this.label9.Font = new System.Drawing.Font("Arial Unicode MS", 30F);this.label9.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label9.Location = new System.Drawing.Point(0, 0);this.label9.Name = "label9";this.label9.Size = new System.Drawing.Size(65, 66);this.label9.TabIndex = 2;this.label9.Tag = "9";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)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H9.Dock = System.Windows.Forms.DockStyle.Bottom;this.ucSplitLine_H9.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_H9.Location = new System.Drawing.Point(0, 66);this.ucSplitLine_H9.Name = "ucSplitLine_H9";this.ucSplitLine_H9.Size = new System.Drawing.Size(65, 1);this.ucSplitLine_H9.TabIndex = 1;this.ucSplitLine_H9.TabStop = false;// // ucSplitLine_V9// this.ucSplitLine_V9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V9.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V9.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_V9.Location = new System.Drawing.Point(65, 0);this.ucSplitLine_V9.Name = "ucSplitLine_V9";this.ucSplitLine_V9.Size = new System.Drawing.Size(1, 67);this.ucSplitLine_V9.TabIndex = 0;this.ucSplitLine_V9.TabStop = false;// // panel8// this.panel8.Controls.Add(this.label8);this.panel8.Controls.Add(this.ucSplitLine_H8);this.panel8.Controls.Add(this.ucSplitLine_V8);this.panel8.Dock = System.Windows.Forms.DockStyle.Fill;this.panel8.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.panel8.Location = new System.Drawing.Point(132, 0);this.panel8.Margin = new System.Windows.Forms.Padding(0);this.panel8.Name = "panel8";this.panel8.Size = new System.Drawing.Size(66, 67);this.panel8.TabIndex = 8;// // label8// this.label8.Dock = System.Windows.Forms.DockStyle.Fill;this.label8.Font = new System.Drawing.Font("Arial Unicode MS", 30F);this.label8.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label8.Location = new System.Drawing.Point(0, 0);this.label8.Name = "label8";this.label8.Size = new System.Drawing.Size(65, 66);this.label8.TabIndex = 2;this.label8.Tag = "8";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)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H8.Dock = System.Windows.Forms.DockStyle.Bottom;this.ucSplitLine_H8.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_H8.Location = new System.Drawing.Point(0, 66);this.ucSplitLine_H8.Name = "ucSplitLine_H8";this.ucSplitLine_H8.Size = new System.Drawing.Size(65, 1);this.ucSplitLine_H8.TabIndex = 1;this.ucSplitLine_H8.TabStop = false;// // ucSplitLine_V8// this.ucSplitLine_V8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V8.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V8.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_V8.Location = new System.Drawing.Point(65, 0);this.ucSplitLine_V8.Name = "ucSplitLine_V8";this.ucSplitLine_V8.Size = new System.Drawing.Size(1, 67);this.ucSplitLine_V8.TabIndex = 0;this.ucSplitLine_V8.TabStop = false;// // panel7// this.panel7.Controls.Add(this.label7);this.panel7.Controls.Add(this.ucSplitLine_H7);this.panel7.Controls.Add(this.ucSplitLine_V7);this.panel7.Dock = System.Windows.Forms.DockStyle.Fill;this.panel7.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.panel7.Location = new System.Drawing.Point(0, 0);this.panel7.Margin = new System.Windows.Forms.Padding(0);this.panel7.Name = "panel7";this.panel7.Size = new System.Drawing.Size(66, 67);this.panel7.TabIndex = 7;// // label7// this.label7.Dock = System.Windows.Forms.DockStyle.Fill;this.label7.Font = new System.Drawing.Font("Arial Unicode MS", 30F);this.label7.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label7.Location = new System.Drawing.Point(0, 0);this.label7.Name = "label7";this.label7.Size = new System.Drawing.Size(65, 66);this.label7.TabIndex = 2;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)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H7.Dock = System.Windows.Forms.DockStyle.Bottom;this.ucSplitLine_H7.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_H7.Location = new System.Drawing.Point(0, 66);this.ucSplitLine_H7.Name = "ucSplitLine_H7";this.ucSplitLine_H7.Size = new System.Drawing.Size(65, 1);this.ucSplitLine_H7.TabIndex = 1;this.ucSplitLine_H7.TabStop = false;// // ucSplitLine_V7// this.ucSplitLine_V7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V7.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V7.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_V7.Location = new System.Drawing.Point(65, 0);this.ucSplitLine_V7.Name = "ucSplitLine_V7";this.ucSplitLine_V7.Size = new System.Drawing.Size(1, 67);this.ucSplitLine_V7.TabIndex = 0;this.ucSplitLine_V7.TabStop = false;// // panel6// this.panel6.Controls.Add(this.label6);this.panel6.Controls.Add(this.ucSplitLine_H6);this.panel6.Controls.Add(this.ucSplitLine_V6);this.panel6.Dock = System.Windows.Forms.DockStyle.Fill;this.panel6.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.panel6.Location = new System.Drawing.Point(66, 0);this.panel6.Margin = new System.Windows.Forms.Padding(0);this.panel6.Name = "panel6";this.panel6.Size = new System.Drawing.Size(66, 67);this.panel6.TabIndex = 6;// // label6// this.label6.Dock = System.Windows.Forms.DockStyle.Fill;this.label6.Font = new System.Drawing.Font("Arial Unicode MS", 30F);this.label6.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label6.Location = new System.Drawing.Point(0, 0);this.label6.Name = "label6";this.label6.Size = new System.Drawing.Size(65, 66);this.label6.TabIndex = 2;this.label6.Tag = "7";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)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H6.Dock = System.Windows.Forms.DockStyle.Bottom;this.ucSplitLine_H6.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_H6.Location = new System.Drawing.Point(0, 66);this.ucSplitLine_H6.Name = "ucSplitLine_H6";this.ucSplitLine_H6.Size = new System.Drawing.Size(65, 1);this.ucSplitLine_H6.TabIndex = 1;this.ucSplitLine_H6.TabStop = false;// // ucSplitLine_V6// this.ucSplitLine_V6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V6.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V6.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_V6.Location = new System.Drawing.Point(65, 0);this.ucSplitLine_V6.Name = "ucSplitLine_V6";this.ucSplitLine_V6.Size = new System.Drawing.Size(1, 67);this.ucSplitLine_V6.TabIndex = 0;this.ucSplitLine_V6.TabStop = false;// // panel5// this.panel5.Controls.Add(this.label5);this.panel5.Controls.Add(this.ucSplitLine_H5);this.panel5.Controls.Add(this.ucSplitLine_V5);this.panel5.Dock = System.Windows.Forms.DockStyle.Fill;this.panel5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.panel5.Location = new System.Drawing.Point(528, 0);this.panel5.Margin = new System.Windows.Forms.Padding(0);this.panel5.Name = "panel5";this.panel5.Size = new System.Drawing.Size(66, 67);this.panel5.TabIndex = 5;// // label5// this.label5.Dock = System.Windows.Forms.DockStyle.Fill;this.label5.Font = new System.Drawing.Font("Arial Unicode MS", 30F);this.label5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label5.Location = new System.Drawing.Point(0, 0);this.label5.Name = "label5";this.label5.Size = new System.Drawing.Size(65, 66);this.label5.TabIndex = 2;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)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H5.Dock = System.Windows.Forms.DockStyle.Bottom;this.ucSplitLine_H5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_H5.Location = new System.Drawing.Point(0, 66);this.ucSplitLine_H5.Name = "ucSplitLine_H5";this.ucSplitLine_H5.Size = new System.Drawing.Size(65, 1);this.ucSplitLine_H5.TabIndex = 1;this.ucSplitLine_H5.TabStop = false;// // ucSplitLine_V5// this.ucSplitLine_V5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V5.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_V5.Location = new System.Drawing.Point(65, 0);this.ucSplitLine_V5.Name = "ucSplitLine_V5";this.ucSplitLine_V5.Size = new System.Drawing.Size(1, 67);this.ucSplitLine_V5.TabIndex = 0;this.ucSplitLine_V5.TabStop = false;// // panel4// this.panel4.Controls.Add(this.label4);this.panel4.Controls.Add(this.ucSplitLine_H4);this.panel4.Dock = System.Windows.Forms.DockStyle.Fill;this.panel4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.panel4.Location = new System.Drawing.Point(594, 0);this.panel4.Margin = new System.Windows.Forms.Padding(0);this.panel4.Name = "panel4";this.panel4.Size = new System.Drawing.Size(75, 67);this.panel4.TabIndex = 4;// // 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)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label4.Location = new System.Drawing.Point(0, 0);this.label4.Name = "label4";this.label4.Size = new System.Drawing.Size(75, 66);this.label4.TabIndex = 2;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)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H4.Dock = System.Windows.Forms.DockStyle.Bottom;this.ucSplitLine_H4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_H4.Location = new System.Drawing.Point(0, 66);this.ucSplitLine_H4.Name = "ucSplitLine_H4";this.ucSplitLine_H4.Size = new System.Drawing.Size(75, 1);this.ucSplitLine_H4.TabIndex = 1;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)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.panel3.Location = new System.Drawing.Point(462, 0);this.panel3.Margin = new System.Windows.Forms.Padding(0);this.panel3.Name = "panel3";this.panel3.Size = new System.Drawing.Size(66, 67);this.panel3.TabIndex = 3;// // label3// this.label3.Dock = System.Windows.Forms.DockStyle.Fill;this.label3.Font = new System.Drawing.Font("Arial Unicode MS", 30F);this.label3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label3.Location = new System.Drawing.Point(0, 0);this.label3.Name = "label3";this.label3.Size = new System.Drawing.Size(65, 66);this.label3.TabIndex = 2;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)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H3.Dock = System.Windows.Forms.DockStyle.Bottom;this.ucSplitLine_H3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_H3.Location = new System.Drawing.Point(0, 66);this.ucSplitLine_H3.Name = "ucSplitLine_H3";this.ucSplitLine_H3.Size = new System.Drawing.Size(65, 1);this.ucSplitLine_H3.TabIndex = 1;this.ucSplitLine_H3.TabStop = false;// // ucSplitLine_V3// this.ucSplitLine_V3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V3.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_V3.Location = new System.Drawing.Point(65, 0);this.ucSplitLine_V3.Name = "ucSplitLine_V3";this.ucSplitLine_V3.Size = new System.Drawing.Size(1, 67);this.ucSplitLine_V3.TabIndex = 0;this.ucSplitLine_V3.TabStop = false;// // panel2// this.panel2.Controls.Add(this.label2);this.panel2.Controls.Add(this.ucSplitLine_H2);this.panel2.Controls.Add(this.ucSplitLine_V2);this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;this.panel2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.panel2.Location = new System.Drawing.Point(330, 0);this.panel2.Margin = new System.Windows.Forms.Padding(0);this.panel2.Name = "panel2";this.panel2.Size = new System.Drawing.Size(66, 67);this.panel2.TabIndex = 2;// // label2// this.label2.Dock = System.Windows.Forms.DockStyle.Fill;this.label2.Font = new System.Drawing.Font("Arial Unicode MS", 30F);this.label2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label2.Location = new System.Drawing.Point(0, 0);this.label2.Name = "label2";this.label2.Size = new System.Drawing.Size(65, 66);this.label2.TabIndex = 2;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)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H2.Dock = System.Windows.Forms.DockStyle.Bottom;this.ucSplitLine_H2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_H2.Location = new System.Drawing.Point(0, 66);this.ucSplitLine_H2.Name = "ucSplitLine_H2";this.ucSplitLine_H2.Size = new System.Drawing.Size(65, 1);this.ucSplitLine_H2.TabIndex = 1;this.ucSplitLine_H2.TabStop = false;// // ucSplitLine_V2// this.ucSplitLine_V2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V2.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_V2.Location = new System.Drawing.Point(65, 0);this.ucSplitLine_V2.Name = "ucSplitLine_V2";this.ucSplitLine_V2.Size = new System.Drawing.Size(1, 67);this.ucSplitLine_V2.TabIndex = 0;this.ucSplitLine_V2.TabStop = false;// // panel1// this.panel1.Controls.Add(this.label1);this.panel1.Controls.Add(this.ucSplitLine_H1);this.panel1.Controls.Add(this.ucSplitLine_V1);this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;this.panel1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.panel1.Location = new System.Drawing.Point(396, 0);this.panel1.Margin = new System.Windows.Forms.Padding(0);this.panel1.Name = "panel1";this.panel1.Size = new System.Drawing.Size(66, 67);this.panel1.TabIndex = 1;// // label1// this.label1.Dock = System.Windows.Forms.DockStyle.Fill;this.label1.Font = new System.Drawing.Font("Arial Unicode MS", 30F);this.label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.label1.Location = new System.Drawing.Point(0, 0);this.label1.Name = "label1";this.label1.Size = new System.Drawing.Size(65, 66);this.label1.TabIndex = 2;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)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H1.Dock = System.Windows.Forms.DockStyle.Bottom;this.ucSplitLine_H1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_H1.Location = new System.Drawing.Point(0, 66);this.ucSplitLine_H1.Name = "ucSplitLine_H1";this.ucSplitLine_H1.Size = new System.Drawing.Size(65, 1);this.ucSplitLine_H1.TabIndex = 1;this.ucSplitLine_H1.TabStop = false;// // ucSplitLine_V1// this.ucSplitLine_V1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V1.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_V1.Location = new System.Drawing.Point(65, 0);this.ucSplitLine_V1.Name = "ucSplitLine_V1";this.ucSplitLine_V1.Size = new System.Drawing.Size(1, 67);this.ucSplitLine_V1.TabIndex = 0;this.ucSplitLine_V1.TabStop = false;// // ucSplitLine_V4// this.ucSplitLine_V4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V4.Dock = System.Windows.Forms.DockStyle.Right;this.ucSplitLine_V4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_V4.Location = new System.Drawing.Point(670, 0);this.ucSplitLine_V4.Name = "ucSplitLine_V4";this.ucSplitLine_V4.Size = new System.Drawing.Size(1, 273);this.ucSplitLine_V4.TabIndex = 2;this.ucSplitLine_V4.TabStop = false;// // ucSplitLine_V14// this.ucSplitLine_V14.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_V14.Dock = System.Windows.Forms.DockStyle.Left;this.ucSplitLine_V14.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_V14.Location = new System.Drawing.Point(0, 0);this.ucSplitLine_V14.Name = "ucSplitLine_V14";this.ucSplitLine_V14.Size = new System.Drawing.Size(1, 273);this.ucSplitLine_V14.TabIndex = 3;this.ucSplitLine_V14.TabStop = false;// // ucSplitLine_H24// this.ucSplitLine_H24.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H24.Dock = System.Windows.Forms.DockStyle.Bottom;this.ucSplitLine_H24.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_H24.Location = new System.Drawing.Point(1, 272);this.ucSplitLine_H24.Name = "ucSplitLine_H24";this.ucSplitLine_H24.Size = new System.Drawing.Size(669, 1);this.ucSplitLine_H24.TabIndex = 4;this.ucSplitLine_H24.TabStop = false;// // ucSplitLine_H31// this.ucSplitLine_H31.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));this.ucSplitLine_H31.Dock = System.Windows.Forms.DockStyle.Top;this.ucSplitLine_H31.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));this.ucSplitLine_H31.Location = new System.Drawing.Point(1, 0);this.ucSplitLine_H31.Name = "ucSplitLine_H31";this.ucSplitLine_H31.Size = new System.Drawing.Size(669, 1);this.ucSplitLine_H31.TabIndex = 5;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(0);this.Name = "UCKeyBorderAll";this.Size = new System.Drawing.Size(671, 273);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);}#endregionprivate 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年了,一直想做一套漂亮点的自定义控件,于是就有了本系列文章. GitHub:https://github.com/kwwwvagaa/NetWinformControl 码云:ht ...

  2. winform 显示分隔控件_(八十)c#Winform自定义控件-分割线标签-HZHControls

    1 //***********************************************************************2 //Assembly : HZH_Contro ...

  3. Java从键盘输入n行字符串_Java十四天零基础入门-Java布尔类型

    不闲聊!!!不扯淡!!!小UP只分享Java相关的资源干货 Java布尔类型 在Java语言中布尔类型的值只包括true和false,没有其他值,不包括1和0,布尔类型的数据在开发中主要使用在逻辑判断 ...

  4. (三十二)c#Winform自定义控件-表格

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

  5. 谭浩强《C++程序设计》书后习题 第十三章-第十四章

    2019独角兽企业重金招聘Python工程师标准>>> 最近要复习一下C和C++的基础知识,于是计划把之前学过的谭浩强的<C程序设计>和<C++程序设计>习题 ...

  6. Python编程基础:第三十四节 文件移动Move a File

    第三十四节 文件移动Move a File 前言 实践 前言 当我们需要将一个文件/文件夹移动到另一个指定路径时,就需要用到shutil.move()函数,该函数需要指定两个参数shutil.move ...

  7. 鸟哥的Linux私房菜(基础篇)- 第二十四章、 X Window 配置介绍

    第二十四章. X Window 配置介绍 最近升级日期:2009/08/07 在 Linux 上头的图形介面我们称之为 X Window System,简称为 X 或 X11 罗!为何称之为系统呢?这 ...

  8. C语言库函数大全及应用实例十四

    原文:C语言库函数大全及应用实例十四                                       [编程资料]C语言库函数大全及应用实例十四 函数名: strset 功 能: 将一个串 ...

  9. 《Linux内核设计与实现》读书笔记(十四)- 块I/O层

    最近太忙,居然过了2个月才更新第十四章.... 主要内容: 块设备简介 内核访问块设备的方法 内核I/O调度程序 1. 块设备简介 I/O设备主要有2类: 字符设备:只能顺序读写设备中的内容,比如 串 ...

最新文章

  1. arcmap创建空间索引_mysql搜索引擎你会用了么
  2. C# -WinForm 中英文实现, 国际化实现的简单方法
  3. jvm系列(八):jvm知识点总览
  4. [渝粤教育] 西南科技大学 政府经济学 在线考试复习资料
  5. Meta宣布将关闭面部识别系统 删除超10亿用户面部扫描数据
  6. mysql 无法创建用户_mysql不能创建用户
  7. Kafka监控系统Kafka Eagle:支持kerberos认证
  8. php和java访问中的一些区别
  9. python基础——map/reduce
  10. matlab rsenc函数,Xilinx RS编码IP核仿真验证
  11. html转PDF并添加水印
  12. 7-6 字符串逆序 (10 分)
  13. 从何处来,往何处去——关于数学起源和目的思考
  14. WINDOWS 7、windows server 2008、VISTA激活排斥
  15. Impala graceful shutdown功能介绍
  16. xshell 6+xftp 6卸载时出现1628错误解决办法
  17. 36-sparkstreaming
  18. html文件是一种使用超文本标记语言,超文本标记语言HTML HTML(Hyper Text Markup Language,.ppt...
  19. 移动端SEO的一些疑问
  20. 嵌入式 Linux 驱动开发你想知道的都在这

热门文章

  1. 字符串分割、切片、替换、去除头尾指定字符
  2. linux 计算内存使用率
  3. android透明功能引导页,Android 利用PagerView做引导页
  4. 企业ERP系统的正确运用
  5. 百度网盘网页倍速播放视频的小技巧
  6. mysql zlib_mysql8 参考手册--lz4_decompress 、zlib_decompress、perror实用程序
  7. 1425:【例题4】加工生产调度
  8. 关于微信小程序第三方客服接入调查
  9. c++代码批量修改图片名称(重命名)实例及运行结果
  10. Github 学习 (整理自http://stormzhang.com/github/2016/06/04/learn-github-from-zero4/ 张哥学Git)