前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >(十四)c#Winform自定义控件-键盘(一)

(十四)c#Winform自定义控件-键盘(一)

作者头像
冰封一夏
发布2019-09-11 15:56:06
1.7K0
发布2019-09-11 15:56:06
举报

前提

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

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

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

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

目录

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

准备工作

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

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

本篇文章介绍英文键盘

开始

添加用户控件,命名UCKeyBorderAll

定义枚举,显示模式

代码语言:javascript
复制
1 public enum KeyBorderCharType
2     {
3         CHAR = 1,
4         NUMBER = 2
5     }

属性

代码语言:javascript
复制
 1  private KeyBorderCharType _charType = KeyBorderCharType.CHAR;
 2 
 3         [Description("默认显示样式"), Category("自定义")]
 4         public KeyBorderCharType CharType
 5         {
 6             get { return _charType; }
 7             set
 8             {
 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;

按钮事件

代码语言:javascript
复制
 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         }

辅助函数

代码语言:javascript
复制
 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         }

这样一个键盘就完成了

看下完整代码

代码语言:javascript
复制
  1 // 版权所有  黄正辉  交流群:568015492   QQ:623128629
  2 // 文件名称:UCKeyBorderAll.cs
  3 // 创建日期:2019-08-15 16:00:06
  4 // 功能描述:KeyBord
  5 // 项目地址:https://gitee.com/kwwwvagaa/net_winform_custom_control
  6 using System;
  7 using System.Collections.Generic;
  8 using System.ComponentModel;
  9 using System.Drawing;
 10 using System.Data;
 11 using System.Linq;
 12 using System.Text;
 13 using System.Windows.Forms;
 14 
 15 namespace HZH_Controls.Controls
 16 {
 17     [DefaultEvent("KeyDown")]
 18     public partial class UCKeyBorderAll : UserControl
 19     {
 20         private KeyBorderCharType _charType = KeyBorderCharType.CHAR;
 21 
 22         [Description("默认显示样式"), Category("自定义")]
 23         public KeyBorderCharType CharType
 24         {
 25             get { return _charType; }
 26             set
 27             {
 28                 _charType = value;
 29                 if (value == KeyBorderCharType.CHAR)
 30                 {
 31                     if (label37.Text.ToLower() == "abc.")
 32                     {
 33                         CharOrNum();
 34                     }
 35                 }
 36                 else
 37                 {
 38                     if (label37.Text.ToLower() == "?123")
 39                     {
 40                         CharOrNum();
 41                     }
 42                 }
 43             }
 44         }
 45         [Description("按键点击事件"), Category("自定义")]
 46         public event EventHandler KeyClick;
 47         [Description("回车点击事件"), Category("自定义")]
 48         public event EventHandler EnterClick;
 49         [Description("删除点击事件"), Category("自定义")]
 50         public event EventHandler BackspaceClike;
 51         [Description("收起点击事件"), Category("自定义")]
 52         public event EventHandler RetractClike;
 53         public UCKeyBorderAll()
 54         {
 55             InitializeComponent();
 56         }
 57 
 58         private void KeyDown_MouseDown(object sender, MouseEventArgs e)
 59         {
 60             Label lbl = sender as Label;
 61             if (string.IsNullOrEmpty(lbl.Text))
 62             {
 63                 return;
 64             }
 65             if (lbl.Text == "大写")
 66             {
 67                 ToUper(true);
 68                 lbl.Text = "小写";
 69             }
 70             else if (lbl.Text == "小写")
 71             {
 72                 ToUper(false);
 73                 lbl.Text = "大写";
 74             }
 75             else if (lbl.Text == "?123" || lbl.Text == "abc.")
 76             {
 77                 CharOrNum();
 78             }
 79             else if (lbl.Text == "空格")
 80             {
 81                 SendKeys.Send(" ");
 82             }
 83             else if (lbl.Text == "删除")
 84             {
 85                 SendKeys.Send("{BACKSPACE}");
 86                 if (BackspaceClike != null)
 87                     BackspaceClike(sender, e);
 88             }
 89             else if (lbl.Text == "回车")
 90             {
 91                 SendKeys.Send("{ENTER}");
 92                 if (EnterClick != null)
 93                     EnterClick(sender, e);
 94             }
 95             else if (lbl.Text == "收起")
 96             {
 97                 if (RetractClike != null)
 98                     RetractClike(sender, e);
 99             }
100             else
101             {
102                 SendKeys.Send(lbl.Text);
103             }
104             if (KeyClick != null)
105                 KeyClick(sender, e);
106         }
107 
108         private void ToUper(bool bln)
109         {
110             foreach (Control item in this.tableLayoutPanel2.Controls)
111             {
112                 if (item is Panel)
113                 {
114                     foreach (Control pc in item.Controls)
115                     {
116                         if (pc is Label)
117                         {
118                             if (pc.Text == "abc.")
119                                 break;
120                             if (bln)
121                             {
122                                 pc.Text = pc.Text.ToUpper();
123                             }
124                             else
125                             {
126                                 pc.Text = pc.Text.ToLower();
127                             }
128                             break;
129                         }
130                     }
131                 }
132             }
133         }
134 
135         private void CharOrNum()
136         {
137             foreach (Control item in this.tableLayoutPanel2.Controls)
138             {
139                 if (item is Panel)
140                 {
141                     foreach (Control pc in item.Controls)
142                     {
143                         if (pc is Label)
144                         {
145                             string strTag = pc.Text;
146                             pc.Text = pc.Tag.ToString();
147                             pc.Tag = strTag;
148                             break;
149                         }
150                     }
151                 }
152             }
153         }
154     }
155     public enum KeyBorderCharType
156     {
157         CHAR = 1,
158         NUMBER = 2
159     }
160 }
代码语言:javascript
复制
   1 namespace HZH_Controls.Controls
   2 {
   3     partial class UCKeyBorderAll
   4     {
   5         /// <summary> 
   6         /// 必需的设计器变量。
   7         /// </summary>
   8         private System.ComponentModel.IContainer components = null;
   9 
  10         /// <summary> 
  11         /// 清理所有正在使用的资源。
  12         /// </summary>
  13         /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
  14         protected override void Dispose(bool disposing)
  15         {
  16             if (disposing && (components != null))
  17             {
  18                 components.Dispose();
  19             }
  20             base.Dispose(disposing);
  21         }
  22 
  23         #region 组件设计器生成的代码
  24 
  25         /// <summary> 
  26         /// 设计器支持所需的方法 - 不要
  27         /// 使用代码编辑器修改此方法的内容。
  28         /// </summary>
  29         private void InitializeComponent()
  30         {
  31             this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
  32             this.panel39 = new System.Windows.Forms.Panel();
  33             this.label39 = new System.Windows.Forms.Label();
  34             this.ucSplitLine_V39 = new HZH_Controls.Controls.UCSplitLine_V();
  35             this.panel37 = new System.Windows.Forms.Panel();
  36             this.label37 = new System.Windows.Forms.Label();
  37             this.ucSplitLine_V37 = new HZH_Controls.Controls.UCSplitLine_V();
  38             this.panel36 = new System.Windows.Forms.Panel();
  39             this.label36 = new System.Windows.Forms.Label();
  40             this.ucSplitLine_V36 = new HZH_Controls.Controls.UCSplitLine_V();
  41             this.panel35 = new System.Windows.Forms.Panel();
  42             this.label35 = new System.Windows.Forms.Label();
  43             this.panel33 = new System.Windows.Forms.Panel();
  44             this.label33 = new System.Windows.Forms.Label();
  45             this.ucSplitLine_V33 = new HZH_Controls.Controls.UCSplitLine_V();
  46             this.panel30 = new System.Windows.Forms.Panel();
  47             this.label30 = new System.Windows.Forms.Label();
  48             this.ucSplitLine_H30 = new HZH_Controls.Controls.UCSplitLine_H();
  49             this.ucSplitLine_V30 = new HZH_Controls.Controls.UCSplitLine_V();
  50             this.panel29 = new System.Windows.Forms.Panel();
  51             this.label29 = new System.Windows.Forms.Label();
  52             this.ucSplitLine_H29 = new HZH_Controls.Controls.UCSplitLine_H();
  53             this.ucSplitLine_V29 = new HZH_Controls.Controls.UCSplitLine_V();
  54             this.panel28 = new System.Windows.Forms.Panel();
  55             this.label28 = new System.Windows.Forms.Label();
  56             this.ucSplitLine_H28 = new HZH_Controls.Controls.UCSplitLine_H();
  57             this.ucSplitLine_V28 = new HZH_Controls.Controls.UCSplitLine_V();
  58             this.panel27 = new System.Windows.Forms.Panel();
  59             this.label27 = new System.Windows.Forms.Label();
  60             this.ucSplitLine_H27 = new HZH_Controls.Controls.UCSplitLine_H();
  61             this.ucSplitLine_V27 = new HZH_Controls.Controls.UCSplitLine_V();
  62             this.panel26 = new System.Windows.Forms.Panel();
  63             this.label26 = new System.Windows.Forms.Label();
  64             this.ucSplitLine_H26 = new HZH_Controls.Controls.UCSplitLine_H();
  65             this.ucSplitLine_V26 = new HZH_Controls.Controls.UCSplitLine_V();
  66             this.panel25 = new System.Windows.Forms.Panel();
  67             this.label25 = new System.Windows.Forms.Label();
  68             this.ucSplitLine_H25 = new HZH_Controls.Controls.UCSplitLine_H();
  69             this.panel23 = new System.Windows.Forms.Panel();
  70             this.label23 = new System.Windows.Forms.Label();
  71             this.ucSplitLine_H23 = new HZH_Controls.Controls.UCSplitLine_H();
  72             this.ucSplitLine_V23 = new HZH_Controls.Controls.UCSplitLine_V();
  73             this.panel22 = new System.Windows.Forms.Panel();
  74             this.label22 = new System.Windows.Forms.Label();
  75             this.ucSplitLine_H22 = new HZH_Controls.Controls.UCSplitLine_H();
  76             this.ucSplitLine_V22 = new HZH_Controls.Controls.UCSplitLine_V();
  77             this.panel21 = new System.Windows.Forms.Panel();
  78             this.label21 = new System.Windows.Forms.Label();
  79             this.ucSplitLine_H21 = new HZH_Controls.Controls.UCSplitLine_H();
  80             this.ucSplitLine_V21 = new HZH_Controls.Controls.UCSplitLine_V();
  81             this.panel20 = new System.Windows.Forms.Panel();
  82             this.label20 = new System.Windows.Forms.Label();
  83             this.ucSplitLine_H20 = new HZH_Controls.Controls.UCSplitLine_H();
  84             this.ucSplitLine_V20 = new HZH_Controls.Controls.UCSplitLine_V();
  85             this.panel19 = new System.Windows.Forms.Panel();
  86             this.label19 = new System.Windows.Forms.Label();
  87             this.ucSplitLine_H19 = new HZH_Controls.Controls.UCSplitLine_H();
  88             this.ucSplitLine_V19 = new HZH_Controls.Controls.UCSplitLine_V();
  89             this.panel18 = new System.Windows.Forms.Panel();
  90             this.label18 = new System.Windows.Forms.Label();
  91             this.ucSplitLine_H18 = new HZH_Controls.Controls.UCSplitLine_H();
  92             this.ucSplitLine_V18 = new HZH_Controls.Controls.UCSplitLine_V();
  93             this.panel17 = new System.Windows.Forms.Panel();
  94             this.label17 = new System.Windows.Forms.Label();
  95             this.ucSplitLine_H17 = new HZH_Controls.Controls.UCSplitLine_H();
  96             this.ucSplitLine_V17 = new HZH_Controls.Controls.UCSplitLine_V();
  97             this.panel16 = new System.Windows.Forms.Panel();
  98             this.label16 = new System.Windows.Forms.Label();
  99             this.ucSplitLine_H16 = new HZH_Controls.Controls.UCSplitLine_H();
 100             this.ucSplitLine_V16 = new HZH_Controls.Controls.UCSplitLine_V();
 101             this.panel15 = new System.Windows.Forms.Panel();
 102             this.label15 = new System.Windows.Forms.Label();
 103             this.ucSplitLine_H15 = new HZH_Controls.Controls.UCSplitLine_H();
 104             this.ucSplitLine_V15 = new HZH_Controls.Controls.UCSplitLine_V();
 105             this.panel14 = new System.Windows.Forms.Panel();
 106             this.label14 = new System.Windows.Forms.Label();
 107             this.ucSplitLine_H14 = new HZH_Controls.Controls.UCSplitLine_H();
 108             this.panel13 = new System.Windows.Forms.Panel();
 109             this.label13 = new System.Windows.Forms.Label();
 110             this.ucSplitLine_H13 = new HZH_Controls.Controls.UCSplitLine_H();
 111             this.ucSplitLine_V13 = new HZH_Controls.Controls.UCSplitLine_V();
 112             this.panel12 = new System.Windows.Forms.Panel();
 113             this.label12 = new System.Windows.Forms.Label();
 114             this.ucSplitLine_H12 = new HZH_Controls.Controls.UCSplitLine_H();
 115             this.ucSplitLine_V12 = new HZH_Controls.Controls.UCSplitLine_V();
 116             this.panel11 = new System.Windows.Forms.Panel();
 117             this.label11 = new System.Windows.Forms.Label();
 118             this.ucSplitLine_H11 = new HZH_Controls.Controls.UCSplitLine_H();
 119             this.ucSplitLine_V11 = new HZH_Controls.Controls.UCSplitLine_V();
 120             this.panel10 = new System.Windows.Forms.Panel();
 121             this.label10 = new System.Windows.Forms.Label();
 122             this.ucSplitLine_H10 = new HZH_Controls.Controls.UCSplitLine_H();
 123             this.ucSplitLine_V10 = new HZH_Controls.Controls.UCSplitLine_V();
 124             this.panel9 = new System.Windows.Forms.Panel();
 125             this.label9 = new System.Windows.Forms.Label();
 126             this.ucSplitLine_H9 = new HZH_Controls.Controls.UCSplitLine_H();
 127             this.ucSplitLine_V9 = new HZH_Controls.Controls.UCSplitLine_V();
 128             this.panel8 = new System.Windows.Forms.Panel();
 129             this.label8 = new System.Windows.Forms.Label();
 130             this.ucSplitLine_H8 = new HZH_Controls.Controls.UCSplitLine_H();
 131             this.ucSplitLine_V8 = new HZH_Controls.Controls.UCSplitLine_V();
 132             this.panel7 = new System.Windows.Forms.Panel();
 133             this.label7 = new System.Windows.Forms.Label();
 134             this.ucSplitLine_H7 = new HZH_Controls.Controls.UCSplitLine_H();
 135             this.ucSplitLine_V7 = new HZH_Controls.Controls.UCSplitLine_V();
 136             this.panel6 = new System.Windows.Forms.Panel();
 137             this.label6 = new System.Windows.Forms.Label();
 138             this.ucSplitLine_H6 = new HZH_Controls.Controls.UCSplitLine_H();
 139             this.ucSplitLine_V6 = new HZH_Controls.Controls.UCSplitLine_V();
 140             this.panel5 = new System.Windows.Forms.Panel();
 141             this.label5 = new System.Windows.Forms.Label();
 142             this.ucSplitLine_H5 = new HZH_Controls.Controls.UCSplitLine_H();
 143             this.ucSplitLine_V5 = new HZH_Controls.Controls.UCSplitLine_V();
 144             this.panel4 = new System.Windows.Forms.Panel();
 145             this.label4 = new System.Windows.Forms.Label();
 146             this.ucSplitLine_H4 = new HZH_Controls.Controls.UCSplitLine_H();
 147             this.panel3 = new System.Windows.Forms.Panel();
 148             this.label3 = new System.Windows.Forms.Label();
 149             this.ucSplitLine_H3 = new HZH_Controls.Controls.UCSplitLine_H();
 150             this.ucSplitLine_V3 = new HZH_Controls.Controls.UCSplitLine_V();
 151             this.panel2 = new System.Windows.Forms.Panel();
 152             this.label2 = new System.Windows.Forms.Label();
 153             this.ucSplitLine_H2 = new HZH_Controls.Controls.UCSplitLine_H();
 154             this.ucSplitLine_V2 = new HZH_Controls.Controls.UCSplitLine_V();
 155             this.panel1 = new System.Windows.Forms.Panel();
 156             this.label1 = new System.Windows.Forms.Label();
 157             this.ucSplitLine_H1 = new HZH_Controls.Controls.UCSplitLine_H();
 158             this.ucSplitLine_V1 = new HZH_Controls.Controls.UCSplitLine_V();
 159             this.ucSplitLine_V4 = new HZH_Controls.Controls.UCSplitLine_V();
 160             this.ucSplitLine_V14 = new HZH_Controls.Controls.UCSplitLine_V();
 161             this.ucSplitLine_H24 = new HZH_Controls.Controls.UCSplitLine_H();
 162             this.ucSplitLine_H31 = new HZH_Controls.Controls.UCSplitLine_H();
 163             this.tableLayoutPanel2.SuspendLayout();
 164             this.panel39.SuspendLayout();
 165             this.panel37.SuspendLayout();
 166             this.panel36.SuspendLayout();
 167             this.panel35.SuspendLayout();
 168             this.panel33.SuspendLayout();
 169             this.panel30.SuspendLayout();
 170             this.panel29.SuspendLayout();
 171             this.panel28.SuspendLayout();
 172             this.panel27.SuspendLayout();
 173             this.panel26.SuspendLayout();
 174             this.panel25.SuspendLayout();
 175             this.panel23.SuspendLayout();
 176             this.panel22.SuspendLayout();
 177             this.panel21.SuspendLayout();
 178             this.panel20.SuspendLayout();
 179             this.panel19.SuspendLayout();
 180             this.panel18.SuspendLayout();
 181             this.panel17.SuspendLayout();
 182             this.panel16.SuspendLayout();
 183             this.panel15.SuspendLayout();
 184             this.panel14.SuspendLayout();
 185             this.panel13.SuspendLayout();
 186             this.panel12.SuspendLayout();
 187             this.panel11.SuspendLayout();
 188             this.panel10.SuspendLayout();
 189             this.panel9.SuspendLayout();
 190             this.panel8.SuspendLayout();
 191             this.panel7.SuspendLayout();
 192             this.panel6.SuspendLayout();
 193             this.panel5.SuspendLayout();
 194             this.panel4.SuspendLayout();
 195             this.panel3.SuspendLayout();
 196             this.panel2.SuspendLayout();
 197             this.panel1.SuspendLayout();
 198             this.SuspendLayout();
 199             // 
 200             // tableLayoutPanel2
 201             // 
 202             this.tableLayoutPanel2.ColumnCount = 10;
 203             this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 10F));
 204             this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 10F));
 205             this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 10F));
 206             this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 10F));
 207             this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 10F));
 208             this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 10F));
 209             this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 10F));
 210             this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 10F));
 211             this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 10F));
 212             this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 10F));
 213             this.tableLayoutPanel2.Controls.Add(this.panel39, 2, 3);
 214             this.tableLayoutPanel2.Controls.Add(this.panel37, 0, 3);
 215             this.tableLayoutPanel2.Controls.Add(this.panel36, 1, 3);
 216             this.tableLayoutPanel2.Controls.Add(this.panel35, 8, 3);
 217             this.tableLayoutPanel2.Controls.Add(this.panel33, 7, 3);
 218             this.tableLayoutPanel2.Controls.Add(this.panel30, 3, 2);
 219             this.tableLayoutPanel2.Controls.Add(this.panel29, 4, 2);
 220             this.tableLayoutPanel2.Controls.Add(this.panel28, 2, 2);
 221             this.tableLayoutPanel2.Controls.Add(this.panel27, 0, 2);
 222             this.tableLayoutPanel2.Controls.Add(this.panel26, 1, 2);
 223             this.tableLayoutPanel2.Controls.Add(this.panel25, 8, 2);
 224             this.tableLayoutPanel2.Controls.Add(this.panel23, 7, 2);
 225             this.tableLayoutPanel2.Controls.Add(this.panel22, 5, 2);
 226             this.tableLayoutPanel2.Controls.Add(this.panel21, 6, 2);
 227             this.tableLayoutPanel2.Controls.Add(this.panel20, 3, 1);
 228             this.tableLayoutPanel2.Controls.Add(this.panel19, 4, 1);
 229             this.tableLayoutPanel2.Controls.Add(this.panel18, 2, 1);
 230             this.tableLayoutPanel2.Controls.Add(this.panel17, 0, 1);
 231             this.tableLayoutPanel2.Controls.Add(this.panel16, 1, 1);
 232             this.tableLayoutPanel2.Controls.Add(this.panel15, 8, 1);
 233             this.tableLayoutPanel2.Controls.Add(this.panel14, 9, 1);
 234             this.tableLayoutPanel2.Controls.Add(this.panel13, 7, 1);
 235             this.tableLayoutPanel2.Controls.Add(this.panel12, 5, 1);
 236             this.tableLayoutPanel2.Controls.Add(this.panel11, 6, 1);
 237             this.tableLayoutPanel2.Controls.Add(this.panel10, 4, 0);
 238             this.tableLayoutPanel2.Controls.Add(this.panel9, 3, 0);
 239             this.tableLayoutPanel2.Controls.Add(this.panel8, 2, 0);
 240             this.tableLayoutPanel2.Controls.Add(this.panel7, 0, 0);
 241             this.tableLayoutPanel2.Controls.Add(this.panel6, 1, 0);
 242             this.tableLayoutPanel2.Controls.Add(this.panel5, 8, 0);
 243             this.tableLayoutPanel2.Controls.Add(this.panel4, 9, 0);
 244             this.tableLayoutPanel2.Controls.Add(this.panel3, 7, 0);
 245             this.tableLayoutPanel2.Controls.Add(this.panel2, 5, 0);
 246             this.tableLayoutPanel2.Controls.Add(this.panel1, 6, 0);
 247             this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
 248             this.tableLayoutPanel2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 249             this.tableLayoutPanel2.Location = new System.Drawing.Point(1, 1);
 250             this.tableLayoutPanel2.Margin = new System.Windows.Forms.Padding(0);
 251             this.tableLayoutPanel2.Name = "tableLayoutPanel2";
 252             this.tableLayoutPanel2.RowCount = 4;
 253             this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
 254             this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
 255             this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
 256             this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
 257             this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
 258             this.tableLayoutPanel2.Size = new System.Drawing.Size(669, 271);
 259             this.tableLayoutPanel2.TabIndex = 1;
 260             // 
 261             // panel39
 262             // 
 263             this.tableLayoutPanel2.SetColumnSpan(this.panel39, 5);
 264             this.panel39.Controls.Add(this.label39);
 265             this.panel39.Controls.Add(this.ucSplitLine_V39);
 266             this.panel39.Dock = System.Windows.Forms.DockStyle.Fill;
 267             this.panel39.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 268             this.panel39.Location = new System.Drawing.Point(132, 201);
 269             this.panel39.Margin = new System.Windows.Forms.Padding(0);
 270             this.panel39.Name = "panel39";
 271             this.panel39.Size = new System.Drawing.Size(330, 70);
 272             this.panel39.TabIndex = 39;
 273             // 
 274             // label39
 275             // 
 276             this.label39.Dock = System.Windows.Forms.DockStyle.Fill;
 277             this.label39.Font = new System.Drawing.Font("微软雅黑", 20F);
 278             this.label39.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 279             this.label39.Location = new System.Drawing.Point(0, 0);
 280             this.label39.Name = "label39";
 281             this.label39.Size = new System.Drawing.Size(329, 70);
 282             this.label39.TabIndex = 2;
 283             this.label39.Tag = "空格";
 284             this.label39.Text = "空格";
 285             this.label39.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
 286             this.label39.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_MouseDown);
 287             // 
 288             // ucSplitLine_V39
 289             // 
 290             this.ucSplitLine_V39.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
 291             this.ucSplitLine_V39.Dock = System.Windows.Forms.DockStyle.Right;
 292             this.ucSplitLine_V39.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 293             this.ucSplitLine_V39.Location = new System.Drawing.Point(329, 0);
 294             this.ucSplitLine_V39.Name = "ucSplitLine_V39";
 295             this.ucSplitLine_V39.Size = new System.Drawing.Size(1, 70);
 296             this.ucSplitLine_V39.TabIndex = 0;
 297             this.ucSplitLine_V39.TabStop = false;
 298             // 
 299             // panel37
 300             // 
 301             this.panel37.Controls.Add(this.label37);
 302             this.panel37.Controls.Add(this.ucSplitLine_V37);
 303             this.panel37.Dock = System.Windows.Forms.DockStyle.Fill;
 304             this.panel37.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 305             this.panel37.Location = new System.Drawing.Point(0, 201);
 306             this.panel37.Margin = new System.Windows.Forms.Padding(0);
 307             this.panel37.Name = "panel37";
 308             this.panel37.Size = new System.Drawing.Size(66, 70);
 309             this.panel37.TabIndex = 37;
 310             // 
 311             // label37
 312             // 
 313             this.label37.Dock = System.Windows.Forms.DockStyle.Fill;
 314             this.label37.Font = new System.Drawing.Font("Arial Unicode MS", 15F);
 315             this.label37.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 316             this.label37.Location = new System.Drawing.Point(0, 0);
 317             this.label37.Name = "label37";
 318             this.label37.Size = new System.Drawing.Size(65, 70);
 319             this.label37.TabIndex = 2;
 320             this.label37.Tag = "abc.";
 321             this.label37.Text = "?123";
 322             this.label37.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
 323             this.label37.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_MouseDown);
 324             // 
 325             // ucSplitLine_V37
 326             // 
 327             this.ucSplitLine_V37.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
 328             this.ucSplitLine_V37.Dock = System.Windows.Forms.DockStyle.Right;
 329             this.ucSplitLine_V37.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 330             this.ucSplitLine_V37.Location = new System.Drawing.Point(65, 0);
 331             this.ucSplitLine_V37.Name = "ucSplitLine_V37";
 332             this.ucSplitLine_V37.Size = new System.Drawing.Size(1, 70);
 333             this.ucSplitLine_V37.TabIndex = 0;
 334             this.ucSplitLine_V37.TabStop = false;
 335             // 
 336             // panel36
 337             // 
 338             this.panel36.Controls.Add(this.label36);
 339             this.panel36.Controls.Add(this.ucSplitLine_V36);
 340             this.panel36.Dock = System.Windows.Forms.DockStyle.Fill;
 341             this.panel36.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 342             this.panel36.Location = new System.Drawing.Point(66, 201);
 343             this.panel36.Margin = new System.Windows.Forms.Padding(0);
 344             this.panel36.Name = "panel36";
 345             this.panel36.Size = new System.Drawing.Size(66, 70);
 346             this.panel36.TabIndex = 36;
 347             // 
 348             // label36
 349             // 
 350             this.label36.Dock = System.Windows.Forms.DockStyle.Fill;
 351             this.label36.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
 352             this.label36.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 353             this.label36.Location = new System.Drawing.Point(0, 0);
 354             this.label36.Name = "label36";
 355             this.label36.Size = new System.Drawing.Size(65, 70);
 356             this.label36.TabIndex = 2;
 357             this.label36.Tag = "0";
 358             this.label36.Text = ".";
 359             this.label36.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
 360             this.label36.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_MouseDown);
 361             // 
 362             // ucSplitLine_V36
 363             // 
 364             this.ucSplitLine_V36.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
 365             this.ucSplitLine_V36.Dock = System.Windows.Forms.DockStyle.Right;
 366             this.ucSplitLine_V36.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 367             this.ucSplitLine_V36.Location = new System.Drawing.Point(65, 0);
 368             this.ucSplitLine_V36.Name = "ucSplitLine_V36";
 369             this.ucSplitLine_V36.Size = new System.Drawing.Size(1, 70);
 370             this.ucSplitLine_V36.TabIndex = 0;
 371             this.ucSplitLine_V36.TabStop = false;
 372             // 
 373             // panel35
 374             // 
 375             this.tableLayoutPanel2.SetColumnSpan(this.panel35, 2);
 376             this.panel35.Controls.Add(this.label35);
 377             this.panel35.Dock = System.Windows.Forms.DockStyle.Fill;
 378             this.panel35.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 379             this.panel35.Location = new System.Drawing.Point(528, 201);
 380             this.panel35.Margin = new System.Windows.Forms.Padding(0);
 381             this.panel35.Name = "panel35";
 382             this.panel35.Size = new System.Drawing.Size(141, 70);
 383             this.panel35.TabIndex = 35;
 384             // 
 385             // label35
 386             // 
 387             this.label35.Dock = System.Windows.Forms.DockStyle.Fill;
 388             this.label35.Font = new System.Drawing.Font("微软雅黑", 20F);
 389             this.label35.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 390             this.label35.Location = new System.Drawing.Point(0, 0);
 391             this.label35.Name = "label35";
 392             this.label35.Size = new System.Drawing.Size(141, 70);
 393             this.label35.TabIndex = 2;
 394             this.label35.Tag = "回车";
 395             this.label35.Text = "回车";
 396             this.label35.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
 397             this.label35.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_MouseDown);
 398             // 
 399             // panel33
 400             // 
 401             this.panel33.Controls.Add(this.label33);
 402             this.panel33.Controls.Add(this.ucSplitLine_V33);
 403             this.panel33.Dock = System.Windows.Forms.DockStyle.Fill;
 404             this.panel33.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 405             this.panel33.Location = new System.Drawing.Point(462, 201);
 406             this.panel33.Margin = new System.Windows.Forms.Padding(0);
 407             this.panel33.Name = "panel33";
 408             this.panel33.Size = new System.Drawing.Size(66, 70);
 409             this.panel33.TabIndex = 33;
 410             // 
 411             // label33
 412             // 
 413             this.label33.Dock = System.Windows.Forms.DockStyle.Fill;
 414             this.label33.Font = new System.Drawing.Font("微软雅黑", 15F);
 415             this.label33.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 416             this.label33.Location = new System.Drawing.Point(0, 0);
 417             this.label33.Name = "label33";
 418             this.label33.Size = new System.Drawing.Size(65, 70);
 419             this.label33.TabIndex = 2;
 420             this.label33.Tag = "收起";
 421             this.label33.Text = "收起";
 422             this.label33.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
 423             this.label33.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_MouseDown);
 424             // 
 425             // ucSplitLine_V33
 426             // 
 427             this.ucSplitLine_V33.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
 428             this.ucSplitLine_V33.Dock = System.Windows.Forms.DockStyle.Right;
 429             this.ucSplitLine_V33.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 430             this.ucSplitLine_V33.Location = new System.Drawing.Point(65, 0);
 431             this.ucSplitLine_V33.Name = "ucSplitLine_V33";
 432             this.ucSplitLine_V33.Size = new System.Drawing.Size(1, 70);
 433             this.ucSplitLine_V33.TabIndex = 0;
 434             this.ucSplitLine_V33.TabStop = false;
 435             // 
 436             // panel30
 437             // 
 438             this.panel30.Controls.Add(this.label30);
 439             this.panel30.Controls.Add(this.ucSplitLine_H30);
 440             this.panel30.Controls.Add(this.ucSplitLine_V30);
 441             this.panel30.Dock = System.Windows.Forms.DockStyle.Fill;
 442             this.panel30.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 443             this.panel30.Location = new System.Drawing.Point(198, 134);
 444             this.panel30.Margin = new System.Windows.Forms.Padding(0);
 445             this.panel30.Name = "panel30";
 446             this.panel30.Size = new System.Drawing.Size(66, 67);
 447             this.panel30.TabIndex = 30;
 448             // 
 449             // label30
 450             // 
 451             this.label30.Dock = System.Windows.Forms.DockStyle.Fill;
 452             this.label30.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
 453             this.label30.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 454             this.label30.Location = new System.Drawing.Point(0, 0);
 455             this.label30.Name = "label30";
 456             this.label30.Size = new System.Drawing.Size(65, 66);
 457             this.label30.TabIndex = 2;
 458             this.label30.Tag = "3";
 459             this.label30.Text = "c";
 460             this.label30.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
 461             this.label30.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_MouseDown);
 462             // 
 463             // ucSplitLine_H30
 464             // 
 465             this.ucSplitLine_H30.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
 466             this.ucSplitLine_H30.Dock = System.Windows.Forms.DockStyle.Bottom;
 467             this.ucSplitLine_H30.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 468             this.ucSplitLine_H30.Location = new System.Drawing.Point(0, 66);
 469             this.ucSplitLine_H30.Name = "ucSplitLine_H30";
 470             this.ucSplitLine_H30.Size = new System.Drawing.Size(65, 1);
 471             this.ucSplitLine_H30.TabIndex = 1;
 472             this.ucSplitLine_H30.TabStop = false;
 473             // 
 474             // ucSplitLine_V30
 475             // 
 476             this.ucSplitLine_V30.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
 477             this.ucSplitLine_V30.Dock = System.Windows.Forms.DockStyle.Right;
 478             this.ucSplitLine_V30.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 479             this.ucSplitLine_V30.Location = new System.Drawing.Point(65, 0);
 480             this.ucSplitLine_V30.Name = "ucSplitLine_V30";
 481             this.ucSplitLine_V30.Size = new System.Drawing.Size(1, 67);
 482             this.ucSplitLine_V30.TabIndex = 0;
 483             this.ucSplitLine_V30.TabStop = false;
 484             // 
 485             // panel29
 486             // 
 487             this.panel29.Controls.Add(this.label29);
 488             this.panel29.Controls.Add(this.ucSplitLine_H29);
 489             this.panel29.Controls.Add(this.ucSplitLine_V29);
 490             this.panel29.Dock = System.Windows.Forms.DockStyle.Fill;
 491             this.panel29.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 492             this.panel29.Location = new System.Drawing.Point(264, 134);
 493             this.panel29.Margin = new System.Windows.Forms.Padding(0);
 494             this.panel29.Name = "panel29";
 495             this.panel29.Size = new System.Drawing.Size(66, 67);
 496             this.panel29.TabIndex = 29;
 497             // 
 498             // label29
 499             // 
 500             this.label29.Dock = System.Windows.Forms.DockStyle.Fill;
 501             this.label29.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
 502             this.label29.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 503             this.label29.Location = new System.Drawing.Point(0, 0);
 504             this.label29.Name = "label29";
 505             this.label29.Size = new System.Drawing.Size(65, 66);
 506             this.label29.TabIndex = 2;
 507             this.label29.Tag = ":";
 508             this.label29.Text = "v";
 509             this.label29.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
 510             this.label29.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_MouseDown);
 511             // 
 512             // ucSplitLine_H29
 513             // 
 514             this.ucSplitLine_H29.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
 515             this.ucSplitLine_H29.Dock = System.Windows.Forms.DockStyle.Bottom;
 516             this.ucSplitLine_H29.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 517             this.ucSplitLine_H29.Location = new System.Drawing.Point(0, 66);
 518             this.ucSplitLine_H29.Name = "ucSplitLine_H29";
 519             this.ucSplitLine_H29.Size = new System.Drawing.Size(65, 1);
 520             this.ucSplitLine_H29.TabIndex = 1;
 521             this.ucSplitLine_H29.TabStop = false;
 522             // 
 523             // ucSplitLine_V29
 524             // 
 525             this.ucSplitLine_V29.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
 526             this.ucSplitLine_V29.Dock = System.Windows.Forms.DockStyle.Right;
 527             this.ucSplitLine_V29.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 528             this.ucSplitLine_V29.Location = new System.Drawing.Point(65, 0);
 529             this.ucSplitLine_V29.Name = "ucSplitLine_V29";
 530             this.ucSplitLine_V29.Size = new System.Drawing.Size(1, 67);
 531             this.ucSplitLine_V29.TabIndex = 0;
 532             this.ucSplitLine_V29.TabStop = false;
 533             // 
 534             // panel28
 535             // 
 536             this.panel28.Controls.Add(this.label28);
 537             this.panel28.Controls.Add(this.ucSplitLine_H28);
 538             this.panel28.Controls.Add(this.ucSplitLine_V28);
 539             this.panel28.Dock = System.Windows.Forms.DockStyle.Fill;
 540             this.panel28.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 541             this.panel28.Location = new System.Drawing.Point(132, 134);
 542             this.panel28.Margin = new System.Windows.Forms.Padding(0);
 543             this.panel28.Name = "panel28";
 544             this.panel28.Size = new System.Drawing.Size(66, 67);
 545             this.panel28.TabIndex = 28;
 546             // 
 547             // label28
 548             // 
 549             this.label28.Dock = System.Windows.Forms.DockStyle.Fill;
 550             this.label28.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
 551             this.label28.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 552             this.label28.Location = new System.Drawing.Point(0, 0);
 553             this.label28.Name = "label28";
 554             this.label28.Size = new System.Drawing.Size(65, 66);
 555             this.label28.TabIndex = 2;
 556             this.label28.Tag = "2";
 557             this.label28.Text = "x";
 558             this.label28.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
 559             this.label28.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_MouseDown);
 560             // 
 561             // ucSplitLine_H28
 562             // 
 563             this.ucSplitLine_H28.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
 564             this.ucSplitLine_H28.Dock = System.Windows.Forms.DockStyle.Bottom;
 565             this.ucSplitLine_H28.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 566             this.ucSplitLine_H28.Location = new System.Drawing.Point(0, 66);
 567             this.ucSplitLine_H28.Name = "ucSplitLine_H28";
 568             this.ucSplitLine_H28.Size = new System.Drawing.Size(65, 1);
 569             this.ucSplitLine_H28.TabIndex = 1;
 570             this.ucSplitLine_H28.TabStop = false;
 571             // 
 572             // ucSplitLine_V28
 573             // 
 574             this.ucSplitLine_V28.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
 575             this.ucSplitLine_V28.Dock = System.Windows.Forms.DockStyle.Right;
 576             this.ucSplitLine_V28.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 577             this.ucSplitLine_V28.Location = new System.Drawing.Point(65, 0);
 578             this.ucSplitLine_V28.Name = "ucSplitLine_V28";
 579             this.ucSplitLine_V28.Size = new System.Drawing.Size(1, 67);
 580             this.ucSplitLine_V28.TabIndex = 0;
 581             this.ucSplitLine_V28.TabStop = false;
 582             // 
 583             // panel27
 584             // 
 585             this.panel27.Controls.Add(this.label27);
 586             this.panel27.Controls.Add(this.ucSplitLine_H27);
 587             this.panel27.Controls.Add(this.ucSplitLine_V27);
 588             this.panel27.Dock = System.Windows.Forms.DockStyle.Fill;
 589             this.panel27.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 590             this.panel27.Location = new System.Drawing.Point(0, 134);
 591             this.panel27.Margin = new System.Windows.Forms.Padding(0);
 592             this.panel27.Name = "panel27";
 593             this.panel27.Size = new System.Drawing.Size(66, 67);
 594             this.panel27.TabIndex = 27;
 595             // 
 596             // label27
 597             // 
 598             this.label27.Dock = System.Windows.Forms.DockStyle.Fill;
 599             this.label27.Font = new System.Drawing.Font("微软雅黑", 15F);
 600             this.label27.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 601             this.label27.Location = new System.Drawing.Point(0, 0);
 602             this.label27.Name = "label27";
 603             this.label27.Size = new System.Drawing.Size(65, 66);
 604             this.label27.TabIndex = 2;
 605             this.label27.Tag = ".";
 606             this.label27.Text = "大写";
 607             this.label27.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
 608             this.label27.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_MouseDown);
 609             // 
 610             // ucSplitLine_H27
 611             // 
 612             this.ucSplitLine_H27.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
 613             this.ucSplitLine_H27.Dock = System.Windows.Forms.DockStyle.Bottom;
 614             this.ucSplitLine_H27.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 615             this.ucSplitLine_H27.Location = new System.Drawing.Point(0, 66);
 616             this.ucSplitLine_H27.Name = "ucSplitLine_H27";
 617             this.ucSplitLine_H27.Size = new System.Drawing.Size(65, 1);
 618             this.ucSplitLine_H27.TabIndex = 1;
 619             this.ucSplitLine_H27.TabStop = false;
 620             // 
 621             // ucSplitLine_V27
 622             // 
 623             this.ucSplitLine_V27.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
 624             this.ucSplitLine_V27.Dock = System.Windows.Forms.DockStyle.Right;
 625             this.ucSplitLine_V27.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 626             this.ucSplitLine_V27.Location = new System.Drawing.Point(65, 0);
 627             this.ucSplitLine_V27.Name = "ucSplitLine_V27";
 628             this.ucSplitLine_V27.Size = new System.Drawing.Size(1, 67);
 629             this.ucSplitLine_V27.TabIndex = 0;
 630             this.ucSplitLine_V27.TabStop = false;
 631             // 
 632             // panel26
 633             // 
 634             this.panel26.Controls.Add(this.label26);
 635             this.panel26.Controls.Add(this.ucSplitLine_H26);
 636             this.panel26.Controls.Add(this.ucSplitLine_V26);
 637             this.panel26.Dock = System.Windows.Forms.DockStyle.Fill;
 638             this.panel26.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 639             this.panel26.Location = new System.Drawing.Point(66, 134);
 640             this.panel26.Margin = new System.Windows.Forms.Padding(0);
 641             this.panel26.Name = "panel26";
 642             this.panel26.Size = new System.Drawing.Size(66, 67);
 643             this.panel26.TabIndex = 26;
 644             // 
 645             // label26
 646             // 
 647             this.label26.Dock = System.Windows.Forms.DockStyle.Fill;
 648             this.label26.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
 649             this.label26.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 650             this.label26.Location = new System.Drawing.Point(0, 0);
 651             this.label26.Name = "label26";
 652             this.label26.Size = new System.Drawing.Size(65, 66);
 653             this.label26.TabIndex = 2;
 654             this.label26.Tag = "1";
 655             this.label26.Text = "z";
 656             this.label26.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
 657             this.label26.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_MouseDown);
 658             // 
 659             // ucSplitLine_H26
 660             // 
 661             this.ucSplitLine_H26.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
 662             this.ucSplitLine_H26.Dock = System.Windows.Forms.DockStyle.Bottom;
 663             this.ucSplitLine_H26.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 664             this.ucSplitLine_H26.Location = new System.Drawing.Point(0, 66);
 665             this.ucSplitLine_H26.Name = "ucSplitLine_H26";
 666             this.ucSplitLine_H26.Size = new System.Drawing.Size(65, 1);
 667             this.ucSplitLine_H26.TabIndex = 1;
 668             this.ucSplitLine_H26.TabStop = false;
 669             // 
 670             // ucSplitLine_V26
 671             // 
 672             this.ucSplitLine_V26.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
 673             this.ucSplitLine_V26.Dock = System.Windows.Forms.DockStyle.Right;
 674             this.ucSplitLine_V26.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 675             this.ucSplitLine_V26.Location = new System.Drawing.Point(65, 0);
 676             this.ucSplitLine_V26.Name = "ucSplitLine_V26";
 677             this.ucSplitLine_V26.Size = new System.Drawing.Size(1, 67);
 678             this.ucSplitLine_V26.TabIndex = 0;
 679             this.ucSplitLine_V26.TabStop = false;
 680             // 
 681             // panel25
 682             // 
 683             this.tableLayoutPanel2.SetColumnSpan(this.panel25, 2);
 684             this.panel25.Controls.Add(this.label25);
 685             this.panel25.Controls.Add(this.ucSplitLine_H25);
 686             this.panel25.Dock = System.Windows.Forms.DockStyle.Fill;
 687             this.panel25.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 688             this.panel25.Location = new System.Drawing.Point(528, 134);
 689             this.panel25.Margin = new System.Windows.Forms.Padding(0);
 690             this.panel25.Name = "panel25";
 691             this.panel25.Size = new System.Drawing.Size(141, 67);
 692             this.panel25.TabIndex = 25;
 693             // 
 694             // label25
 695             // 
 696             this.label25.Dock = System.Windows.Forms.DockStyle.Fill;
 697             this.label25.Font = new System.Drawing.Font("微软雅黑", 20F);
 698             this.label25.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 699             this.label25.Location = new System.Drawing.Point(0, 0);
 700             this.label25.Name = "label25";
 701             this.label25.Size = new System.Drawing.Size(141, 66);
 702             this.label25.TabIndex = 2;
 703             this.label25.Tag = "删除";
 704             this.label25.Text = "删除";
 705             this.label25.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
 706             this.label25.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_MouseDown);
 707             // 
 708             // ucSplitLine_H25
 709             // 
 710             this.ucSplitLine_H25.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
 711             this.ucSplitLine_H25.Dock = System.Windows.Forms.DockStyle.Bottom;
 712             this.ucSplitLine_H25.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 713             this.ucSplitLine_H25.Location = new System.Drawing.Point(0, 66);
 714             this.ucSplitLine_H25.Name = "ucSplitLine_H25";
 715             this.ucSplitLine_H25.Size = new System.Drawing.Size(141, 1);
 716             this.ucSplitLine_H25.TabIndex = 1;
 717             this.ucSplitLine_H25.TabStop = false;
 718             // 
 719             // panel23
 720             // 
 721             this.panel23.Controls.Add(this.label23);
 722             this.panel23.Controls.Add(this.ucSplitLine_H23);
 723             this.panel23.Controls.Add(this.ucSplitLine_V23);
 724             this.panel23.Dock = System.Windows.Forms.DockStyle.Fill;
 725             this.panel23.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 726             this.panel23.Location = new System.Drawing.Point(462, 134);
 727             this.panel23.Margin = new System.Windows.Forms.Padding(0);
 728             this.panel23.Name = "panel23";
 729             this.panel23.Size = new System.Drawing.Size(66, 67);
 730             this.panel23.TabIndex = 23;
 731             // 
 732             // label23
 733             // 
 734             this.label23.Dock = System.Windows.Forms.DockStyle.Fill;
 735             this.label23.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
 736             this.label23.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 737             this.label23.Location = new System.Drawing.Point(0, 0);
 738             this.label23.Name = "label23";
 739             this.label23.Size = new System.Drawing.Size(65, 66);
 740             this.label23.TabIndex = 2;
 741             this.label23.Tag = "`";
 742             this.label23.Text = "m";
 743             this.label23.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
 744             this.label23.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_MouseDown);
 745             // 
 746             // ucSplitLine_H23
 747             // 
 748             this.ucSplitLine_H23.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
 749             this.ucSplitLine_H23.Dock = System.Windows.Forms.DockStyle.Bottom;
 750             this.ucSplitLine_H23.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 751             this.ucSplitLine_H23.Location = new System.Drawing.Point(0, 66);
 752             this.ucSplitLine_H23.Name = "ucSplitLine_H23";
 753             this.ucSplitLine_H23.Size = new System.Drawing.Size(65, 1);
 754             this.ucSplitLine_H23.TabIndex = 1;
 755             this.ucSplitLine_H23.TabStop = false;
 756             // 
 757             // ucSplitLine_V23
 758             // 
 759             this.ucSplitLine_V23.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
 760             this.ucSplitLine_V23.Dock = System.Windows.Forms.DockStyle.Right;
 761             this.ucSplitLine_V23.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 762             this.ucSplitLine_V23.Location = new System.Drawing.Point(65, 0);
 763             this.ucSplitLine_V23.Name = "ucSplitLine_V23";
 764             this.ucSplitLine_V23.Size = new System.Drawing.Size(1, 67);
 765             this.ucSplitLine_V23.TabIndex = 0;
 766             this.ucSplitLine_V23.TabStop = false;
 767             // 
 768             // panel22
 769             // 
 770             this.panel22.Controls.Add(this.label22);
 771             this.panel22.Controls.Add(this.ucSplitLine_H22);
 772             this.panel22.Controls.Add(this.ucSplitLine_V22);
 773             this.panel22.Dock = System.Windows.Forms.DockStyle.Fill;
 774             this.panel22.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 775             this.panel22.Location = new System.Drawing.Point(330, 134);
 776             this.panel22.Margin = new System.Windows.Forms.Padding(0);
 777             this.panel22.Name = "panel22";
 778             this.panel22.Size = new System.Drawing.Size(66, 67);
 779             this.panel22.TabIndex = 22;
 780             // 
 781             // label22
 782             // 
 783             this.label22.Dock = System.Windows.Forms.DockStyle.Fill;
 784             this.label22.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
 785             this.label22.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 786             this.label22.Location = new System.Drawing.Point(0, 0);
 787             this.label22.Name = "label22";
 788             this.label22.Size = new System.Drawing.Size(65, 66);
 789             this.label22.TabIndex = 2;
 790             this.label22.Tag = "!";
 791             this.label22.Text = "b";
 792             this.label22.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
 793             this.label22.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_MouseDown);
 794             // 
 795             // ucSplitLine_H22
 796             // 
 797             this.ucSplitLine_H22.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
 798             this.ucSplitLine_H22.Dock = System.Windows.Forms.DockStyle.Bottom;
 799             this.ucSplitLine_H22.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 800             this.ucSplitLine_H22.Location = new System.Drawing.Point(0, 66);
 801             this.ucSplitLine_H22.Name = "ucSplitLine_H22";
 802             this.ucSplitLine_H22.Size = new System.Drawing.Size(65, 1);
 803             this.ucSplitLine_H22.TabIndex = 1;
 804             this.ucSplitLine_H22.TabStop = false;
 805             // 
 806             // ucSplitLine_V22
 807             // 
 808             this.ucSplitLine_V22.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
 809             this.ucSplitLine_V22.Dock = System.Windows.Forms.DockStyle.Right;
 810             this.ucSplitLine_V22.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 811             this.ucSplitLine_V22.Location = new System.Drawing.Point(65, 0);
 812             this.ucSplitLine_V22.Name = "ucSplitLine_V22";
 813             this.ucSplitLine_V22.Size = new System.Drawing.Size(1, 67);
 814             this.ucSplitLine_V22.TabIndex = 0;
 815             this.ucSplitLine_V22.TabStop = false;
 816             // 
 817             // panel21
 818             // 
 819             this.panel21.Controls.Add(this.label21);
 820             this.panel21.Controls.Add(this.ucSplitLine_H21);
 821             this.panel21.Controls.Add(this.ucSplitLine_V21);
 822             this.panel21.Dock = System.Windows.Forms.DockStyle.Fill;
 823             this.panel21.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 824             this.panel21.Location = new System.Drawing.Point(396, 134);
 825             this.panel21.Margin = new System.Windows.Forms.Padding(0);
 826             this.panel21.Name = "panel21";
 827             this.panel21.Size = new System.Drawing.Size(66, 67);
 828             this.panel21.TabIndex = 21;
 829             // 
 830             // label21
 831             // 
 832             this.label21.Dock = System.Windows.Forms.DockStyle.Fill;
 833             this.label21.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
 834             this.label21.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 835             this.label21.Location = new System.Drawing.Point(0, 0);
 836             this.label21.Name = "label21";
 837             this.label21.Size = new System.Drawing.Size(65, 66);
 838             this.label21.TabIndex = 2;
 839             this.label21.Tag = "\'";
 840             this.label21.Text = "n";
 841             this.label21.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
 842             this.label21.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_MouseDown);
 843             // 
 844             // ucSplitLine_H21
 845             // 
 846             this.ucSplitLine_H21.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
 847             this.ucSplitLine_H21.Dock = System.Windows.Forms.DockStyle.Bottom;
 848             this.ucSplitLine_H21.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 849             this.ucSplitLine_H21.Location = new System.Drawing.Point(0, 66);
 850             this.ucSplitLine_H21.Name = "ucSplitLine_H21";
 851             this.ucSplitLine_H21.Size = new System.Drawing.Size(65, 1);
 852             this.ucSplitLine_H21.TabIndex = 1;
 853             this.ucSplitLine_H21.TabStop = false;
 854             // 
 855             // ucSplitLine_V21
 856             // 
 857             this.ucSplitLine_V21.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
 858             this.ucSplitLine_V21.Dock = System.Windows.Forms.DockStyle.Right;
 859             this.ucSplitLine_V21.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 860             this.ucSplitLine_V21.Location = new System.Drawing.Point(65, 0);
 861             this.ucSplitLine_V21.Name = "ucSplitLine_V21";
 862             this.ucSplitLine_V21.Size = new System.Drawing.Size(1, 67);
 863             this.ucSplitLine_V21.TabIndex = 0;
 864             this.ucSplitLine_V21.TabStop = false;
 865             // 
 866             // panel20
 867             // 
 868             this.panel20.Controls.Add(this.label20);
 869             this.panel20.Controls.Add(this.ucSplitLine_H20);
 870             this.panel20.Controls.Add(this.ucSplitLine_V20);
 871             this.panel20.Dock = System.Windows.Forms.DockStyle.Fill;
 872             this.panel20.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 873             this.panel20.Location = new System.Drawing.Point(198, 67);
 874             this.panel20.Margin = new System.Windows.Forms.Padding(0);
 875             this.panel20.Name = "panel20";
 876             this.panel20.Size = new System.Drawing.Size(66, 67);
 877             this.panel20.TabIndex = 20;
 878             // 
 879             // label20
 880             // 
 881             this.label20.Dock = System.Windows.Forms.DockStyle.Fill;
 882             this.label20.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
 883             this.label20.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 884             this.label20.Location = new System.Drawing.Point(0, 0);
 885             this.label20.Name = "label20";
 886             this.label20.Size = new System.Drawing.Size(65, 66);
 887             this.label20.TabIndex = 2;
 888             this.label20.Tag = "6";
 889             this.label20.Text = "f";
 890             this.label20.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
 891             this.label20.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_MouseDown);
 892             // 
 893             // ucSplitLine_H20
 894             // 
 895             this.ucSplitLine_H20.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
 896             this.ucSplitLine_H20.Dock = System.Windows.Forms.DockStyle.Bottom;
 897             this.ucSplitLine_H20.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 898             this.ucSplitLine_H20.Location = new System.Drawing.Point(0, 66);
 899             this.ucSplitLine_H20.Name = "ucSplitLine_H20";
 900             this.ucSplitLine_H20.Size = new System.Drawing.Size(65, 1);
 901             this.ucSplitLine_H20.TabIndex = 1;
 902             this.ucSplitLine_H20.TabStop = false;
 903             // 
 904             // ucSplitLine_V20
 905             // 
 906             this.ucSplitLine_V20.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
 907             this.ucSplitLine_V20.Dock = System.Windows.Forms.DockStyle.Right;
 908             this.ucSplitLine_V20.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 909             this.ucSplitLine_V20.Location = new System.Drawing.Point(65, 0);
 910             this.ucSplitLine_V20.Name = "ucSplitLine_V20";
 911             this.ucSplitLine_V20.Size = new System.Drawing.Size(1, 67);
 912             this.ucSplitLine_V20.TabIndex = 0;
 913             this.ucSplitLine_V20.TabStop = false;
 914             // 
 915             // panel19
 916             // 
 917             this.panel19.Controls.Add(this.label19);
 918             this.panel19.Controls.Add(this.ucSplitLine_H19);
 919             this.panel19.Controls.Add(this.ucSplitLine_V19);
 920             this.panel19.Dock = System.Windows.Forms.DockStyle.Fill;
 921             this.panel19.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 922             this.panel19.Location = new System.Drawing.Point(264, 67);
 923             this.panel19.Margin = new System.Windows.Forms.Padding(0);
 924             this.panel19.Name = "panel19";
 925             this.panel19.Size = new System.Drawing.Size(66, 67);
 926             this.panel19.TabIndex = 19;
 927             // 
 928             // label19
 929             // 
 930             this.label19.Dock = System.Windows.Forms.DockStyle.Fill;
 931             this.label19.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
 932             this.label19.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 933             this.label19.Location = new System.Drawing.Point(0, 0);
 934             this.label19.Name = "label19";
 935             this.label19.Size = new System.Drawing.Size(65, 66);
 936             this.label19.TabIndex = 2;
 937             this.label19.Tag = ";";
 938             this.label19.Text = "g";
 939             this.label19.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
 940             this.label19.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_MouseDown);
 941             // 
 942             // ucSplitLine_H19
 943             // 
 944             this.ucSplitLine_H19.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
 945             this.ucSplitLine_H19.Dock = System.Windows.Forms.DockStyle.Bottom;
 946             this.ucSplitLine_H19.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 947             this.ucSplitLine_H19.Location = new System.Drawing.Point(0, 66);
 948             this.ucSplitLine_H19.Name = "ucSplitLine_H19";
 949             this.ucSplitLine_H19.Size = new System.Drawing.Size(65, 1);
 950             this.ucSplitLine_H19.TabIndex = 1;
 951             this.ucSplitLine_H19.TabStop = false;
 952             // 
 953             // ucSplitLine_V19
 954             // 
 955             this.ucSplitLine_V19.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
 956             this.ucSplitLine_V19.Dock = System.Windows.Forms.DockStyle.Right;
 957             this.ucSplitLine_V19.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 958             this.ucSplitLine_V19.Location = new System.Drawing.Point(65, 0);
 959             this.ucSplitLine_V19.Name = "ucSplitLine_V19";
 960             this.ucSplitLine_V19.Size = new System.Drawing.Size(1, 67);
 961             this.ucSplitLine_V19.TabIndex = 0;
 962             this.ucSplitLine_V19.TabStop = false;
 963             // 
 964             // panel18
 965             // 
 966             this.panel18.Controls.Add(this.label18);
 967             this.panel18.Controls.Add(this.ucSplitLine_H18);
 968             this.panel18.Controls.Add(this.ucSplitLine_V18);
 969             this.panel18.Dock = System.Windows.Forms.DockStyle.Fill;
 970             this.panel18.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 971             this.panel18.Location = new System.Drawing.Point(132, 67);
 972             this.panel18.Margin = new System.Windows.Forms.Padding(0);
 973             this.panel18.Name = "panel18";
 974             this.panel18.Size = new System.Drawing.Size(66, 67);
 975             this.panel18.TabIndex = 18;
 976             // 
 977             // label18
 978             // 
 979             this.label18.Dock = System.Windows.Forms.DockStyle.Fill;
 980             this.label18.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
 981             this.label18.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 982             this.label18.Location = new System.Drawing.Point(0, 0);
 983             this.label18.Name = "label18";
 984             this.label18.Size = new System.Drawing.Size(65, 66);
 985             this.label18.TabIndex = 2;
 986             this.label18.Tag = "5";
 987             this.label18.Text = "d";
 988             this.label18.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
 989             this.label18.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_MouseDown);
 990             // 
 991             // ucSplitLine_H18
 992             // 
 993             this.ucSplitLine_H18.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
 994             this.ucSplitLine_H18.Dock = System.Windows.Forms.DockStyle.Bottom;
 995             this.ucSplitLine_H18.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
 996             this.ucSplitLine_H18.Location = new System.Drawing.Point(0, 66);
 997             this.ucSplitLine_H18.Name = "ucSplitLine_H18";
 998             this.ucSplitLine_H18.Size = new System.Drawing.Size(65, 1);
 999             this.ucSplitLine_H18.TabIndex = 1;
1000             this.ucSplitLine_H18.TabStop = false;
1001             // 
1002             // ucSplitLine_V18
1003             // 
1004             this.ucSplitLine_V18.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
1005             this.ucSplitLine_V18.Dock = System.Windows.Forms.DockStyle.Right;
1006             this.ucSplitLine_V18.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1007             this.ucSplitLine_V18.Location = new System.Drawing.Point(65, 0);
1008             this.ucSplitLine_V18.Name = "ucSplitLine_V18";
1009             this.ucSplitLine_V18.Size = new System.Drawing.Size(1, 67);
1010             this.ucSplitLine_V18.TabIndex = 0;
1011             this.ucSplitLine_V18.TabStop = false;
1012             // 
1013             // panel17
1014             // 
1015             this.panel17.Controls.Add(this.label17);
1016             this.panel17.Controls.Add(this.ucSplitLine_H17);
1017             this.panel17.Controls.Add(this.ucSplitLine_V17);
1018             this.panel17.Dock = System.Windows.Forms.DockStyle.Fill;
1019             this.panel17.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1020             this.panel17.Location = new System.Drawing.Point(0, 67);
1021             this.panel17.Margin = new System.Windows.Forms.Padding(0);
1022             this.panel17.Name = "panel17";
1023             this.panel17.Size = new System.Drawing.Size(66, 67);
1024             this.panel17.TabIndex = 17;
1025             // 
1026             // label17
1027             // 
1028             this.label17.Dock = System.Windows.Forms.DockStyle.Fill;
1029             this.label17.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
1030             this.label17.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1031             this.label17.Location = new System.Drawing.Point(0, 0);
1032             this.label17.Name = "label17";
1033             this.label17.Size = new System.Drawing.Size(65, 66);
1034             this.label17.TabIndex = 2;
1035             this.label17.Tag = "+";
1036             this.label17.Text = "a";
1037             this.label17.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1038             this.label17.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_MouseDown);
1039             // 
1040             // ucSplitLine_H17
1041             // 
1042             this.ucSplitLine_H17.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
1043             this.ucSplitLine_H17.Dock = System.Windows.Forms.DockStyle.Bottom;
1044             this.ucSplitLine_H17.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1045             this.ucSplitLine_H17.Location = new System.Drawing.Point(0, 66);
1046             this.ucSplitLine_H17.Name = "ucSplitLine_H17";
1047             this.ucSplitLine_H17.Size = new System.Drawing.Size(65, 1);
1048             this.ucSplitLine_H17.TabIndex = 1;
1049             this.ucSplitLine_H17.TabStop = false;
1050             // 
1051             // ucSplitLine_V17
1052             // 
1053             this.ucSplitLine_V17.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
1054             this.ucSplitLine_V17.Dock = System.Windows.Forms.DockStyle.Right;
1055             this.ucSplitLine_V17.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1056             this.ucSplitLine_V17.Location = new System.Drawing.Point(65, 0);
1057             this.ucSplitLine_V17.Name = "ucSplitLine_V17";
1058             this.ucSplitLine_V17.Size = new System.Drawing.Size(1, 67);
1059             this.ucSplitLine_V17.TabIndex = 0;
1060             this.ucSplitLine_V17.TabStop = false;
1061             // 
1062             // panel16
1063             // 
1064             this.panel16.Controls.Add(this.label16);
1065             this.panel16.Controls.Add(this.ucSplitLine_H16);
1066             this.panel16.Controls.Add(this.ucSplitLine_V16);
1067             this.panel16.Dock = System.Windows.Forms.DockStyle.Fill;
1068             this.panel16.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1069             this.panel16.Location = new System.Drawing.Point(66, 67);
1070             this.panel16.Margin = new System.Windows.Forms.Padding(0);
1071             this.panel16.Name = "panel16";
1072             this.panel16.Size = new System.Drawing.Size(66, 67);
1073             this.panel16.TabIndex = 16;
1074             // 
1075             // label16
1076             // 
1077             this.label16.Dock = System.Windows.Forms.DockStyle.Fill;
1078             this.label16.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
1079             this.label16.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1080             this.label16.Location = new System.Drawing.Point(0, 0);
1081             this.label16.Name = "label16";
1082             this.label16.Size = new System.Drawing.Size(65, 66);
1083             this.label16.TabIndex = 2;
1084             this.label16.Tag = "4";
1085             this.label16.Text = "s";
1086             this.label16.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1087             this.label16.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_MouseDown);
1088             // 
1089             // ucSplitLine_H16
1090             // 
1091             this.ucSplitLine_H16.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
1092             this.ucSplitLine_H16.Dock = System.Windows.Forms.DockStyle.Bottom;
1093             this.ucSplitLine_H16.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1094             this.ucSplitLine_H16.Location = new System.Drawing.Point(0, 66);
1095             this.ucSplitLine_H16.Name = "ucSplitLine_H16";
1096             this.ucSplitLine_H16.Size = new System.Drawing.Size(65, 1);
1097             this.ucSplitLine_H16.TabIndex = 1;
1098             this.ucSplitLine_H16.TabStop = false;
1099             // 
1100             // ucSplitLine_V16
1101             // 
1102             this.ucSplitLine_V16.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
1103             this.ucSplitLine_V16.Dock = System.Windows.Forms.DockStyle.Right;
1104             this.ucSplitLine_V16.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1105             this.ucSplitLine_V16.Location = new System.Drawing.Point(65, 0);
1106             this.ucSplitLine_V16.Name = "ucSplitLine_V16";
1107             this.ucSplitLine_V16.Size = new System.Drawing.Size(1, 67);
1108             this.ucSplitLine_V16.TabIndex = 0;
1109             this.ucSplitLine_V16.TabStop = false;
1110             // 
1111             // panel15
1112             // 
1113             this.panel15.Controls.Add(this.label15);
1114             this.panel15.Controls.Add(this.ucSplitLine_H15);
1115             this.panel15.Controls.Add(this.ucSplitLine_V15);
1116             this.panel15.Dock = System.Windows.Forms.DockStyle.Fill;
1117             this.panel15.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1118             this.panel15.Location = new System.Drawing.Point(528, 67);
1119             this.panel15.Margin = new System.Windows.Forms.Padding(0);
1120             this.panel15.Name = "panel15";
1121             this.panel15.Size = new System.Drawing.Size(66, 67);
1122             this.panel15.TabIndex = 15;
1123             // 
1124             // label15
1125             // 
1126             this.label15.Dock = System.Windows.Forms.DockStyle.Fill;
1127             this.label15.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
1128             this.label15.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1129             this.label15.Location = new System.Drawing.Point(0, 0);
1130             this.label15.Name = "label15";
1131             this.label15.Size = new System.Drawing.Size(65, 66);
1132             this.label15.TabIndex = 2;
1133             this.label15.Tag = "/";
1134             this.label15.Text = "l";
1135             this.label15.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1136             this.label15.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_MouseDown);
1137             // 
1138             // ucSplitLine_H15
1139             // 
1140             this.ucSplitLine_H15.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
1141             this.ucSplitLine_H15.Dock = System.Windows.Forms.DockStyle.Bottom;
1142             this.ucSplitLine_H15.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1143             this.ucSplitLine_H15.Location = new System.Drawing.Point(0, 66);
1144             this.ucSplitLine_H15.Name = "ucSplitLine_H15";
1145             this.ucSplitLine_H15.Size = new System.Drawing.Size(65, 1);
1146             this.ucSplitLine_H15.TabIndex = 1;
1147             this.ucSplitLine_H15.TabStop = false;
1148             // 
1149             // ucSplitLine_V15
1150             // 
1151             this.ucSplitLine_V15.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
1152             this.ucSplitLine_V15.Dock = System.Windows.Forms.DockStyle.Right;
1153             this.ucSplitLine_V15.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1154             this.ucSplitLine_V15.Location = new System.Drawing.Point(65, 0);
1155             this.ucSplitLine_V15.Name = "ucSplitLine_V15";
1156             this.ucSplitLine_V15.Size = new System.Drawing.Size(1, 67);
1157             this.ucSplitLine_V15.TabIndex = 0;
1158             this.ucSplitLine_V15.TabStop = false;
1159             // 
1160             // panel14
1161             // 
1162             this.panel14.Controls.Add(this.label14);
1163             this.panel14.Controls.Add(this.ucSplitLine_H14);
1164             this.panel14.Dock = System.Windows.Forms.DockStyle.Fill;
1165             this.panel14.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1166             this.panel14.Location = new System.Drawing.Point(594, 67);
1167             this.panel14.Margin = new System.Windows.Forms.Padding(0);
1168             this.panel14.Name = "panel14";
1169             this.panel14.Size = new System.Drawing.Size(75, 67);
1170             this.panel14.TabIndex = 14;
1171             // 
1172             // label14
1173             // 
1174             this.label14.Dock = System.Windows.Forms.DockStyle.Fill;
1175             this.label14.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
1176             this.label14.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1177             this.label14.Location = new System.Drawing.Point(0, 0);
1178             this.label14.Name = "label14";
1179             this.label14.Size = new System.Drawing.Size(75, 66);
1180             this.label14.TabIndex = 2;
1181             this.label14.Tag = "?";
1182             this.label14.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1183             this.label14.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_MouseDown);
1184             // 
1185             // ucSplitLine_H14
1186             // 
1187             this.ucSplitLine_H14.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
1188             this.ucSplitLine_H14.Dock = System.Windows.Forms.DockStyle.Bottom;
1189             this.ucSplitLine_H14.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1190             this.ucSplitLine_H14.Location = new System.Drawing.Point(0, 66);
1191             this.ucSplitLine_H14.Name = "ucSplitLine_H14";
1192             this.ucSplitLine_H14.Size = new System.Drawing.Size(75, 1);
1193             this.ucSplitLine_H14.TabIndex = 1;
1194             this.ucSplitLine_H14.TabStop = false;
1195             // 
1196             // panel13
1197             // 
1198             this.panel13.Controls.Add(this.label13);
1199             this.panel13.Controls.Add(this.ucSplitLine_H13);
1200             this.panel13.Controls.Add(this.ucSplitLine_V13);
1201             this.panel13.Dock = System.Windows.Forms.DockStyle.Fill;
1202             this.panel13.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1203             this.panel13.Location = new System.Drawing.Point(462, 67);
1204             this.panel13.Margin = new System.Windows.Forms.Padding(0);
1205             this.panel13.Name = "panel13";
1206             this.panel13.Size = new System.Drawing.Size(66, 67);
1207             this.panel13.TabIndex = 13;
1208             // 
1209             // label13
1210             // 
1211             this.label13.Dock = System.Windows.Forms.DockStyle.Fill;
1212             this.label13.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
1213             this.label13.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1214             this.label13.Location = new System.Drawing.Point(0, 0);
1215             this.label13.Name = "label13";
1216             this.label13.Size = new System.Drawing.Size(65, 66);
1217             this.label13.TabIndex = 2;
1218             this.label13.Tag = "\\";
1219             this.label13.Text = "k";
1220             this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1221             this.label13.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_MouseDown);
1222             // 
1223             // ucSplitLine_H13
1224             // 
1225             this.ucSplitLine_H13.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
1226             this.ucSplitLine_H13.Dock = System.Windows.Forms.DockStyle.Bottom;
1227             this.ucSplitLine_H13.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1228             this.ucSplitLine_H13.Location = new System.Drawing.Point(0, 66);
1229             this.ucSplitLine_H13.Name = "ucSplitLine_H13";
1230             this.ucSplitLine_H13.Size = new System.Drawing.Size(65, 1);
1231             this.ucSplitLine_H13.TabIndex = 1;
1232             this.ucSplitLine_H13.TabStop = false;
1233             // 
1234             // ucSplitLine_V13
1235             // 
1236             this.ucSplitLine_V13.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
1237             this.ucSplitLine_V13.Dock = System.Windows.Forms.DockStyle.Right;
1238             this.ucSplitLine_V13.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1239             this.ucSplitLine_V13.Location = new System.Drawing.Point(65, 0);
1240             this.ucSplitLine_V13.Name = "ucSplitLine_V13";
1241             this.ucSplitLine_V13.Size = new System.Drawing.Size(1, 67);
1242             this.ucSplitLine_V13.TabIndex = 0;
1243             this.ucSplitLine_V13.TabStop = false;
1244             // 
1245             // panel12
1246             // 
1247             this.panel12.Controls.Add(this.label12);
1248             this.panel12.Controls.Add(this.ucSplitLine_H12);
1249             this.panel12.Controls.Add(this.ucSplitLine_V12);
1250             this.panel12.Dock = System.Windows.Forms.DockStyle.Fill;
1251             this.panel12.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1252             this.panel12.Location = new System.Drawing.Point(330, 67);
1253             this.panel12.Margin = new System.Windows.Forms.Padding(0);
1254             this.panel12.Name = "panel12";
1255             this.panel12.Size = new System.Drawing.Size(66, 67);
1256             this.panel12.TabIndex = 12;
1257             // 
1258             // label12
1259             // 
1260             this.label12.Dock = System.Windows.Forms.DockStyle.Fill;
1261             this.label12.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
1262             this.label12.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1263             this.label12.Location = new System.Drawing.Point(0, 0);
1264             this.label12.Name = "label12";
1265             this.label12.Size = new System.Drawing.Size(65, 66);
1266             this.label12.TabIndex = 2;
1267             this.label12.Tag = "*";
1268             this.label12.Text = "h";
1269             this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1270             this.label12.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_MouseDown);
1271             // 
1272             // ucSplitLine_H12
1273             // 
1274             this.ucSplitLine_H12.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
1275             this.ucSplitLine_H12.Dock = System.Windows.Forms.DockStyle.Bottom;
1276             this.ucSplitLine_H12.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1277             this.ucSplitLine_H12.Location = new System.Drawing.Point(0, 66);
1278             this.ucSplitLine_H12.Name = "ucSplitLine_H12";
1279             this.ucSplitLine_H12.Size = new System.Drawing.Size(65, 1);
1280             this.ucSplitLine_H12.TabIndex = 1;
1281             this.ucSplitLine_H12.TabStop = false;
1282             // 
1283             // ucSplitLine_V12
1284             // 
1285             this.ucSplitLine_V12.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
1286             this.ucSplitLine_V12.Dock = System.Windows.Forms.DockStyle.Right;
1287             this.ucSplitLine_V12.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1288             this.ucSplitLine_V12.Location = new System.Drawing.Point(65, 0);
1289             this.ucSplitLine_V12.Name = "ucSplitLine_V12";
1290             this.ucSplitLine_V12.Size = new System.Drawing.Size(1, 67);
1291             this.ucSplitLine_V12.TabIndex = 0;
1292             this.ucSplitLine_V12.TabStop = false;
1293             // 
1294             // panel11
1295             // 
1296             this.panel11.Controls.Add(this.label11);
1297             this.panel11.Controls.Add(this.ucSplitLine_H11);
1298             this.panel11.Controls.Add(this.ucSplitLine_V11);
1299             this.panel11.Dock = System.Windows.Forms.DockStyle.Fill;
1300             this.panel11.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1301             this.panel11.Location = new System.Drawing.Point(396, 67);
1302             this.panel11.Margin = new System.Windows.Forms.Padding(0);
1303             this.panel11.Name = "panel11";
1304             this.panel11.Size = new System.Drawing.Size(66, 67);
1305             this.panel11.TabIndex = 11;
1306             // 
1307             // label11
1308             // 
1309             this.label11.Dock = System.Windows.Forms.DockStyle.Fill;
1310             this.label11.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
1311             this.label11.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1312             this.label11.Location = new System.Drawing.Point(0, 0);
1313             this.label11.Name = "label11";
1314             this.label11.Size = new System.Drawing.Size(65, 66);
1315             this.label11.TabIndex = 2;
1316             this.label11.Tag = ",";
1317             this.label11.Text = "j";
1318             this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1319             this.label11.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_MouseDown);
1320             // 
1321             // ucSplitLine_H11
1322             // 
1323             this.ucSplitLine_H11.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
1324             this.ucSplitLine_H11.Dock = System.Windows.Forms.DockStyle.Bottom;
1325             this.ucSplitLine_H11.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1326             this.ucSplitLine_H11.Location = new System.Drawing.Point(0, 66);
1327             this.ucSplitLine_H11.Name = "ucSplitLine_H11";
1328             this.ucSplitLine_H11.Size = new System.Drawing.Size(65, 1);
1329             this.ucSplitLine_H11.TabIndex = 1;
1330             this.ucSplitLine_H11.TabStop = false;
1331             // 
1332             // ucSplitLine_V11
1333             // 
1334             this.ucSplitLine_V11.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
1335             this.ucSplitLine_V11.Dock = System.Windows.Forms.DockStyle.Right;
1336             this.ucSplitLine_V11.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1337             this.ucSplitLine_V11.Location = new System.Drawing.Point(65, 0);
1338             this.ucSplitLine_V11.Name = "ucSplitLine_V11";
1339             this.ucSplitLine_V11.Size = new System.Drawing.Size(1, 67);
1340             this.ucSplitLine_V11.TabIndex = 0;
1341             this.ucSplitLine_V11.TabStop = false;
1342             // 
1343             // panel10
1344             // 
1345             this.panel10.Controls.Add(this.label10);
1346             this.panel10.Controls.Add(this.ucSplitLine_H10);
1347             this.panel10.Controls.Add(this.ucSplitLine_V10);
1348             this.panel10.Dock = System.Windows.Forms.DockStyle.Fill;
1349             this.panel10.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1350             this.panel10.Location = new System.Drawing.Point(264, 0);
1351             this.panel10.Margin = new System.Windows.Forms.Padding(0);
1352             this.panel10.Name = "panel10";
1353             this.panel10.Size = new System.Drawing.Size(66, 67);
1354             this.panel10.TabIndex = 10;
1355             // 
1356             // label10
1357             // 
1358             this.label10.Dock = System.Windows.Forms.DockStyle.Fill;
1359             this.label10.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
1360             this.label10.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1361             this.label10.Location = new System.Drawing.Point(0, 0);
1362             this.label10.Name = "label10";
1363             this.label10.Size = new System.Drawing.Size(65, 66);
1364             this.label10.TabIndex = 2;
1365             this.label10.Tag = "@";
1366             this.label10.Text = "r";
1367             this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1368             this.label10.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_MouseDown);
1369             // 
1370             // ucSplitLine_H10
1371             // 
1372             this.ucSplitLine_H10.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
1373             this.ucSplitLine_H10.Dock = System.Windows.Forms.DockStyle.Bottom;
1374             this.ucSplitLine_H10.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1375             this.ucSplitLine_H10.Location = new System.Drawing.Point(0, 66);
1376             this.ucSplitLine_H10.Name = "ucSplitLine_H10";
1377             this.ucSplitLine_H10.Size = new System.Drawing.Size(65, 1);
1378             this.ucSplitLine_H10.TabIndex = 1;
1379             this.ucSplitLine_H10.TabStop = false;
1380             // 
1381             // ucSplitLine_V10
1382             // 
1383             this.ucSplitLine_V10.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
1384             this.ucSplitLine_V10.Dock = System.Windows.Forms.DockStyle.Right;
1385             this.ucSplitLine_V10.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1386             this.ucSplitLine_V10.Location = new System.Drawing.Point(65, 0);
1387             this.ucSplitLine_V10.Name = "ucSplitLine_V10";
1388             this.ucSplitLine_V10.Size = new System.Drawing.Size(1, 67);
1389             this.ucSplitLine_V10.TabIndex = 0;
1390             this.ucSplitLine_V10.TabStop = false;
1391             // 
1392             // panel9
1393             // 
1394             this.panel9.Controls.Add(this.label9);
1395             this.panel9.Controls.Add(this.ucSplitLine_H9);
1396             this.panel9.Controls.Add(this.ucSplitLine_V9);
1397             this.panel9.Dock = System.Windows.Forms.DockStyle.Fill;
1398             this.panel9.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1399             this.panel9.Location = new System.Drawing.Point(198, 0);
1400             this.panel9.Margin = new System.Windows.Forms.Padding(0);
1401             this.panel9.Name = "panel9";
1402             this.panel9.Size = new System.Drawing.Size(66, 67);
1403             this.panel9.TabIndex = 9;
1404             // 
1405             // label9
1406             // 
1407             this.label9.Dock = System.Windows.Forms.DockStyle.Fill;
1408             this.label9.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
1409             this.label9.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1410             this.label9.Location = new System.Drawing.Point(0, 0);
1411             this.label9.Name = "label9";
1412             this.label9.Size = new System.Drawing.Size(65, 66);
1413             this.label9.TabIndex = 2;
1414             this.label9.Tag = "9";
1415             this.label9.Text = "t";
1416             this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1417             this.label9.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_MouseDown);
1418             // 
1419             // ucSplitLine_H9
1420             // 
1421             this.ucSplitLine_H9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
1422             this.ucSplitLine_H9.Dock = System.Windows.Forms.DockStyle.Bottom;
1423             this.ucSplitLine_H9.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1424             this.ucSplitLine_H9.Location = new System.Drawing.Point(0, 66);
1425             this.ucSplitLine_H9.Name = "ucSplitLine_H9";
1426             this.ucSplitLine_H9.Size = new System.Drawing.Size(65, 1);
1427             this.ucSplitLine_H9.TabIndex = 1;
1428             this.ucSplitLine_H9.TabStop = false;
1429             // 
1430             // ucSplitLine_V9
1431             // 
1432             this.ucSplitLine_V9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
1433             this.ucSplitLine_V9.Dock = System.Windows.Forms.DockStyle.Right;
1434             this.ucSplitLine_V9.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1435             this.ucSplitLine_V9.Location = new System.Drawing.Point(65, 0);
1436             this.ucSplitLine_V9.Name = "ucSplitLine_V9";
1437             this.ucSplitLine_V9.Size = new System.Drawing.Size(1, 67);
1438             this.ucSplitLine_V9.TabIndex = 0;
1439             this.ucSplitLine_V9.TabStop = false;
1440             // 
1441             // panel8
1442             // 
1443             this.panel8.Controls.Add(this.label8);
1444             this.panel8.Controls.Add(this.ucSplitLine_H8);
1445             this.panel8.Controls.Add(this.ucSplitLine_V8);
1446             this.panel8.Dock = System.Windows.Forms.DockStyle.Fill;
1447             this.panel8.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1448             this.panel8.Location = new System.Drawing.Point(132, 0);
1449             this.panel8.Margin = new System.Windows.Forms.Padding(0);
1450             this.panel8.Name = "panel8";
1451             this.panel8.Size = new System.Drawing.Size(66, 67);
1452             this.panel8.TabIndex = 8;
1453             // 
1454             // label8
1455             // 
1456             this.label8.Dock = System.Windows.Forms.DockStyle.Fill;
1457             this.label8.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
1458             this.label8.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1459             this.label8.Location = new System.Drawing.Point(0, 0);
1460             this.label8.Name = "label8";
1461             this.label8.Size = new System.Drawing.Size(65, 66);
1462             this.label8.TabIndex = 2;
1463             this.label8.Tag = "8";
1464             this.label8.Text = "e";
1465             this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1466             this.label8.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_MouseDown);
1467             // 
1468             // ucSplitLine_H8
1469             // 
1470             this.ucSplitLine_H8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
1471             this.ucSplitLine_H8.Dock = System.Windows.Forms.DockStyle.Bottom;
1472             this.ucSplitLine_H8.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1473             this.ucSplitLine_H8.Location = new System.Drawing.Point(0, 66);
1474             this.ucSplitLine_H8.Name = "ucSplitLine_H8";
1475             this.ucSplitLine_H8.Size = new System.Drawing.Size(65, 1);
1476             this.ucSplitLine_H8.TabIndex = 1;
1477             this.ucSplitLine_H8.TabStop = false;
1478             // 
1479             // ucSplitLine_V8
1480             // 
1481             this.ucSplitLine_V8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
1482             this.ucSplitLine_V8.Dock = System.Windows.Forms.DockStyle.Right;
1483             this.ucSplitLine_V8.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1484             this.ucSplitLine_V8.Location = new System.Drawing.Point(65, 0);
1485             this.ucSplitLine_V8.Name = "ucSplitLine_V8";
1486             this.ucSplitLine_V8.Size = new System.Drawing.Size(1, 67);
1487             this.ucSplitLine_V8.TabIndex = 0;
1488             this.ucSplitLine_V8.TabStop = false;
1489             // 
1490             // panel7
1491             // 
1492             this.panel7.Controls.Add(this.label7);
1493             this.panel7.Controls.Add(this.ucSplitLine_H7);
1494             this.panel7.Controls.Add(this.ucSplitLine_V7);
1495             this.panel7.Dock = System.Windows.Forms.DockStyle.Fill;
1496             this.panel7.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1497             this.panel7.Location = new System.Drawing.Point(0, 0);
1498             this.panel7.Margin = new System.Windows.Forms.Padding(0);
1499             this.panel7.Name = "panel7";
1500             this.panel7.Size = new System.Drawing.Size(66, 67);
1501             this.panel7.TabIndex = 7;
1502             // 
1503             // label7
1504             // 
1505             this.label7.Dock = System.Windows.Forms.DockStyle.Fill;
1506             this.label7.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
1507             this.label7.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1508             this.label7.Location = new System.Drawing.Point(0, 0);
1509             this.label7.Name = "label7";
1510             this.label7.Size = new System.Drawing.Size(65, 66);
1511             this.label7.TabIndex = 2;
1512             this.label7.Tag = "-";
1513             this.label7.Text = "q";
1514             this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1515             this.label7.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_MouseDown);
1516             // 
1517             // ucSplitLine_H7
1518             // 
1519             this.ucSplitLine_H7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
1520             this.ucSplitLine_H7.Dock = System.Windows.Forms.DockStyle.Bottom;
1521             this.ucSplitLine_H7.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1522             this.ucSplitLine_H7.Location = new System.Drawing.Point(0, 66);
1523             this.ucSplitLine_H7.Name = "ucSplitLine_H7";
1524             this.ucSplitLine_H7.Size = new System.Drawing.Size(65, 1);
1525             this.ucSplitLine_H7.TabIndex = 1;
1526             this.ucSplitLine_H7.TabStop = false;
1527             // 
1528             // ucSplitLine_V7
1529             // 
1530             this.ucSplitLine_V7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
1531             this.ucSplitLine_V7.Dock = System.Windows.Forms.DockStyle.Right;
1532             this.ucSplitLine_V7.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1533             this.ucSplitLine_V7.Location = new System.Drawing.Point(65, 0);
1534             this.ucSplitLine_V7.Name = "ucSplitLine_V7";
1535             this.ucSplitLine_V7.Size = new System.Drawing.Size(1, 67);
1536             this.ucSplitLine_V7.TabIndex = 0;
1537             this.ucSplitLine_V7.TabStop = false;
1538             // 
1539             // panel6
1540             // 
1541             this.panel6.Controls.Add(this.label6);
1542             this.panel6.Controls.Add(this.ucSplitLine_H6);
1543             this.panel6.Controls.Add(this.ucSplitLine_V6);
1544             this.panel6.Dock = System.Windows.Forms.DockStyle.Fill;
1545             this.panel6.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1546             this.panel6.Location = new System.Drawing.Point(66, 0);
1547             this.panel6.Margin = new System.Windows.Forms.Padding(0);
1548             this.panel6.Name = "panel6";
1549             this.panel6.Size = new System.Drawing.Size(66, 67);
1550             this.panel6.TabIndex = 6;
1551             // 
1552             // label6
1553             // 
1554             this.label6.Dock = System.Windows.Forms.DockStyle.Fill;
1555             this.label6.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
1556             this.label6.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1557             this.label6.Location = new System.Drawing.Point(0, 0);
1558             this.label6.Name = "label6";
1559             this.label6.Size = new System.Drawing.Size(65, 66);
1560             this.label6.TabIndex = 2;
1561             this.label6.Tag = "7";
1562             this.label6.Text = "w";
1563             this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1564             this.label6.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_MouseDown);
1565             // 
1566             // ucSplitLine_H6
1567             // 
1568             this.ucSplitLine_H6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
1569             this.ucSplitLine_H6.Dock = System.Windows.Forms.DockStyle.Bottom;
1570             this.ucSplitLine_H6.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1571             this.ucSplitLine_H6.Location = new System.Drawing.Point(0, 66);
1572             this.ucSplitLine_H6.Name = "ucSplitLine_H6";
1573             this.ucSplitLine_H6.Size = new System.Drawing.Size(65, 1);
1574             this.ucSplitLine_H6.TabIndex = 1;
1575             this.ucSplitLine_H6.TabStop = false;
1576             // 
1577             // ucSplitLine_V6
1578             // 
1579             this.ucSplitLine_V6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
1580             this.ucSplitLine_V6.Dock = System.Windows.Forms.DockStyle.Right;
1581             this.ucSplitLine_V6.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1582             this.ucSplitLine_V6.Location = new System.Drawing.Point(65, 0);
1583             this.ucSplitLine_V6.Name = "ucSplitLine_V6";
1584             this.ucSplitLine_V6.Size = new System.Drawing.Size(1, 67);
1585             this.ucSplitLine_V6.TabIndex = 0;
1586             this.ucSplitLine_V6.TabStop = false;
1587             // 
1588             // panel5
1589             // 
1590             this.panel5.Controls.Add(this.label5);
1591             this.panel5.Controls.Add(this.ucSplitLine_H5);
1592             this.panel5.Controls.Add(this.ucSplitLine_V5);
1593             this.panel5.Dock = System.Windows.Forms.DockStyle.Fill;
1594             this.panel5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1595             this.panel5.Location = new System.Drawing.Point(528, 0);
1596             this.panel5.Margin = new System.Windows.Forms.Padding(0);
1597             this.panel5.Name = "panel5";
1598             this.panel5.Size = new System.Drawing.Size(66, 67);
1599             this.panel5.TabIndex = 5;
1600             // 
1601             // label5
1602             // 
1603             this.label5.Dock = System.Windows.Forms.DockStyle.Fill;
1604             this.label5.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
1605             this.label5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1606             this.label5.Location = new System.Drawing.Point(0, 0);
1607             this.label5.Name = "label5";
1608             this.label5.Size = new System.Drawing.Size(65, 66);
1609             this.label5.TabIndex = 2;
1610             this.label5.Tag = "(";
1611             this.label5.Text = "o";
1612             this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1613             this.label5.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_MouseDown);
1614             // 
1615             // ucSplitLine_H5
1616             // 
1617             this.ucSplitLine_H5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
1618             this.ucSplitLine_H5.Dock = System.Windows.Forms.DockStyle.Bottom;
1619             this.ucSplitLine_H5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1620             this.ucSplitLine_H5.Location = new System.Drawing.Point(0, 66);
1621             this.ucSplitLine_H5.Name = "ucSplitLine_H5";
1622             this.ucSplitLine_H5.Size = new System.Drawing.Size(65, 1);
1623             this.ucSplitLine_H5.TabIndex = 1;
1624             this.ucSplitLine_H5.TabStop = false;
1625             // 
1626             // ucSplitLine_V5
1627             // 
1628             this.ucSplitLine_V5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
1629             this.ucSplitLine_V5.Dock = System.Windows.Forms.DockStyle.Right;
1630             this.ucSplitLine_V5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1631             this.ucSplitLine_V5.Location = new System.Drawing.Point(65, 0);
1632             this.ucSplitLine_V5.Name = "ucSplitLine_V5";
1633             this.ucSplitLine_V5.Size = new System.Drawing.Size(1, 67);
1634             this.ucSplitLine_V5.TabIndex = 0;
1635             this.ucSplitLine_V5.TabStop = false;
1636             // 
1637             // panel4
1638             // 
1639             this.panel4.Controls.Add(this.label4);
1640             this.panel4.Controls.Add(this.ucSplitLine_H4);
1641             this.panel4.Dock = System.Windows.Forms.DockStyle.Fill;
1642             this.panel4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1643             this.panel4.Location = new System.Drawing.Point(594, 0);
1644             this.panel4.Margin = new System.Windows.Forms.Padding(0);
1645             this.panel4.Name = "panel4";
1646             this.panel4.Size = new System.Drawing.Size(75, 67);
1647             this.panel4.TabIndex = 4;
1648             // 
1649             // label4
1650             // 
1651             this.label4.Dock = System.Windows.Forms.DockStyle.Fill;
1652             this.label4.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
1653             this.label4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1654             this.label4.Location = new System.Drawing.Point(0, 0);
1655             this.label4.Name = "label4";
1656             this.label4.Size = new System.Drawing.Size(75, 66);
1657             this.label4.TabIndex = 2;
1658             this.label4.Tag = ")";
1659             this.label4.Text = "p";
1660             this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1661             this.label4.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_MouseDown);
1662             // 
1663             // ucSplitLine_H4
1664             // 
1665             this.ucSplitLine_H4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
1666             this.ucSplitLine_H4.Dock = System.Windows.Forms.DockStyle.Bottom;
1667             this.ucSplitLine_H4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1668             this.ucSplitLine_H4.Location = new System.Drawing.Point(0, 66);
1669             this.ucSplitLine_H4.Name = "ucSplitLine_H4";
1670             this.ucSplitLine_H4.Size = new System.Drawing.Size(75, 1);
1671             this.ucSplitLine_H4.TabIndex = 1;
1672             this.ucSplitLine_H4.TabStop = false;
1673             // 
1674             // panel3
1675             // 
1676             this.panel3.Controls.Add(this.label3);
1677             this.panel3.Controls.Add(this.ucSplitLine_H3);
1678             this.panel3.Controls.Add(this.ucSplitLine_V3);
1679             this.panel3.Dock = System.Windows.Forms.DockStyle.Fill;
1680             this.panel3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1681             this.panel3.Location = new System.Drawing.Point(462, 0);
1682             this.panel3.Margin = new System.Windows.Forms.Padding(0);
1683             this.panel3.Name = "panel3";
1684             this.panel3.Size = new System.Drawing.Size(66, 67);
1685             this.panel3.TabIndex = 3;
1686             // 
1687             // label3
1688             // 
1689             this.label3.Dock = System.Windows.Forms.DockStyle.Fill;
1690             this.label3.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
1691             this.label3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1692             this.label3.Location = new System.Drawing.Point(0, 0);
1693             this.label3.Name = "label3";
1694             this.label3.Size = new System.Drawing.Size(65, 66);
1695             this.label3.TabIndex = 2;
1696             this.label3.Tag = "_";
1697             this.label3.Text = "i";
1698             this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1699             this.label3.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_MouseDown);
1700             // 
1701             // ucSplitLine_H3
1702             // 
1703             this.ucSplitLine_H3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
1704             this.ucSplitLine_H3.Dock = System.Windows.Forms.DockStyle.Bottom;
1705             this.ucSplitLine_H3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1706             this.ucSplitLine_H3.Location = new System.Drawing.Point(0, 66);
1707             this.ucSplitLine_H3.Name = "ucSplitLine_H3";
1708             this.ucSplitLine_H3.Size = new System.Drawing.Size(65, 1);
1709             this.ucSplitLine_H3.TabIndex = 1;
1710             this.ucSplitLine_H3.TabStop = false;
1711             // 
1712             // ucSplitLine_V3
1713             // 
1714             this.ucSplitLine_V3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
1715             this.ucSplitLine_V3.Dock = System.Windows.Forms.DockStyle.Right;
1716             this.ucSplitLine_V3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1717             this.ucSplitLine_V3.Location = new System.Drawing.Point(65, 0);
1718             this.ucSplitLine_V3.Name = "ucSplitLine_V3";
1719             this.ucSplitLine_V3.Size = new System.Drawing.Size(1, 67);
1720             this.ucSplitLine_V3.TabIndex = 0;
1721             this.ucSplitLine_V3.TabStop = false;
1722             // 
1723             // panel2
1724             // 
1725             this.panel2.Controls.Add(this.label2);
1726             this.panel2.Controls.Add(this.ucSplitLine_H2);
1727             this.panel2.Controls.Add(this.ucSplitLine_V2);
1728             this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
1729             this.panel2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1730             this.panel2.Location = new System.Drawing.Point(330, 0);
1731             this.panel2.Margin = new System.Windows.Forms.Padding(0);
1732             this.panel2.Name = "panel2";
1733             this.panel2.Size = new System.Drawing.Size(66, 67);
1734             this.panel2.TabIndex = 2;
1735             // 
1736             // label2
1737             // 
1738             this.label2.Dock = System.Windows.Forms.DockStyle.Fill;
1739             this.label2.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
1740             this.label2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1741             this.label2.Location = new System.Drawing.Point(0, 0);
1742             this.label2.Name = "label2";
1743             this.label2.Size = new System.Drawing.Size(65, 66);
1744             this.label2.TabIndex = 2;
1745             this.label2.Tag = "#";
1746             this.label2.Text = "y";
1747             this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1748             this.label2.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_MouseDown);
1749             // 
1750             // ucSplitLine_H2
1751             // 
1752             this.ucSplitLine_H2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
1753             this.ucSplitLine_H2.Dock = System.Windows.Forms.DockStyle.Bottom;
1754             this.ucSplitLine_H2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1755             this.ucSplitLine_H2.Location = new System.Drawing.Point(0, 66);
1756             this.ucSplitLine_H2.Name = "ucSplitLine_H2";
1757             this.ucSplitLine_H2.Size = new System.Drawing.Size(65, 1);
1758             this.ucSplitLine_H2.TabIndex = 1;
1759             this.ucSplitLine_H2.TabStop = false;
1760             // 
1761             // ucSplitLine_V2
1762             // 
1763             this.ucSplitLine_V2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
1764             this.ucSplitLine_V2.Dock = System.Windows.Forms.DockStyle.Right;
1765             this.ucSplitLine_V2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1766             this.ucSplitLine_V2.Location = new System.Drawing.Point(65, 0);
1767             this.ucSplitLine_V2.Name = "ucSplitLine_V2";
1768             this.ucSplitLine_V2.Size = new System.Drawing.Size(1, 67);
1769             this.ucSplitLine_V2.TabIndex = 0;
1770             this.ucSplitLine_V2.TabStop = false;
1771             // 
1772             // panel1
1773             // 
1774             this.panel1.Controls.Add(this.label1);
1775             this.panel1.Controls.Add(this.ucSplitLine_H1);
1776             this.panel1.Controls.Add(this.ucSplitLine_V1);
1777             this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
1778             this.panel1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1779             this.panel1.Location = new System.Drawing.Point(396, 0);
1780             this.panel1.Margin = new System.Windows.Forms.Padding(0);
1781             this.panel1.Name = "panel1";
1782             this.panel1.Size = new System.Drawing.Size(66, 67);
1783             this.panel1.TabIndex = 1;
1784             // 
1785             // label1
1786             // 
1787             this.label1.Dock = System.Windows.Forms.DockStyle.Fill;
1788             this.label1.Font = new System.Drawing.Font("Arial Unicode MS", 30F);
1789             this.label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1790             this.label1.Location = new System.Drawing.Point(0, 0);
1791             this.label1.Name = "label1";
1792             this.label1.Size = new System.Drawing.Size(65, 66);
1793             this.label1.TabIndex = 2;
1794             this.label1.Tag = "%";
1795             this.label1.Text = "u";
1796             this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1797             this.label1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.KeyDown_MouseDown);
1798             // 
1799             // ucSplitLine_H1
1800             // 
1801             this.ucSplitLine_H1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
1802             this.ucSplitLine_H1.Dock = System.Windows.Forms.DockStyle.Bottom;
1803             this.ucSplitLine_H1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1804             this.ucSplitLine_H1.Location = new System.Drawing.Point(0, 66);
1805             this.ucSplitLine_H1.Name = "ucSplitLine_H1";
1806             this.ucSplitLine_H1.Size = new System.Drawing.Size(65, 1);
1807             this.ucSplitLine_H1.TabIndex = 1;
1808             this.ucSplitLine_H1.TabStop = false;
1809             // 
1810             // ucSplitLine_V1
1811             // 
1812             this.ucSplitLine_V1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
1813             this.ucSplitLine_V1.Dock = System.Windows.Forms.DockStyle.Right;
1814             this.ucSplitLine_V1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1815             this.ucSplitLine_V1.Location = new System.Drawing.Point(65, 0);
1816             this.ucSplitLine_V1.Name = "ucSplitLine_V1";
1817             this.ucSplitLine_V1.Size = new System.Drawing.Size(1, 67);
1818             this.ucSplitLine_V1.TabIndex = 0;
1819             this.ucSplitLine_V1.TabStop = false;
1820             // 
1821             // ucSplitLine_V4
1822             // 
1823             this.ucSplitLine_V4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
1824             this.ucSplitLine_V4.Dock = System.Windows.Forms.DockStyle.Right;
1825             this.ucSplitLine_V4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1826             this.ucSplitLine_V4.Location = new System.Drawing.Point(670, 0);
1827             this.ucSplitLine_V4.Name = "ucSplitLine_V4";
1828             this.ucSplitLine_V4.Size = new System.Drawing.Size(1, 273);
1829             this.ucSplitLine_V4.TabIndex = 2;
1830             this.ucSplitLine_V4.TabStop = false;
1831             // 
1832             // ucSplitLine_V14
1833             // 
1834             this.ucSplitLine_V14.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
1835             this.ucSplitLine_V14.Dock = System.Windows.Forms.DockStyle.Left;
1836             this.ucSplitLine_V14.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1837             this.ucSplitLine_V14.Location = new System.Drawing.Point(0, 0);
1838             this.ucSplitLine_V14.Name = "ucSplitLine_V14";
1839             this.ucSplitLine_V14.Size = new System.Drawing.Size(1, 273);
1840             this.ucSplitLine_V14.TabIndex = 3;
1841             this.ucSplitLine_V14.TabStop = false;
1842             // 
1843             // ucSplitLine_H24
1844             // 
1845             this.ucSplitLine_H24.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
1846             this.ucSplitLine_H24.Dock = System.Windows.Forms.DockStyle.Bottom;
1847             this.ucSplitLine_H24.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1848             this.ucSplitLine_H24.Location = new System.Drawing.Point(1, 272);
1849             this.ucSplitLine_H24.Name = "ucSplitLine_H24";
1850             this.ucSplitLine_H24.Size = new System.Drawing.Size(669, 1);
1851             this.ucSplitLine_H24.TabIndex = 4;
1852             this.ucSplitLine_H24.TabStop = false;
1853             // 
1854             // ucSplitLine_H31
1855             // 
1856             this.ucSplitLine_H31.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
1857             this.ucSplitLine_H31.Dock = System.Windows.Forms.DockStyle.Top;
1858             this.ucSplitLine_H31.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
1859             this.ucSplitLine_H31.Location = new System.Drawing.Point(1, 0);
1860             this.ucSplitLine_H31.Name = "ucSplitLine_H31";
1861             this.ucSplitLine_H31.Size = new System.Drawing.Size(669, 1);
1862             this.ucSplitLine_H31.TabIndex = 5;
1863             this.ucSplitLine_H31.TabStop = false;
1864             // 
1865             // UCKeyBorderAll
1866             // 
1867             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
1868             this.BackColor = System.Drawing.Color.White;
1869             this.Controls.Add(this.tableLayoutPanel2);
1870             this.Controls.Add(this.ucSplitLine_H31);
1871             this.Controls.Add(this.ucSplitLine_H24);
1872             this.Controls.Add(this.ucSplitLine_V14);
1873             this.Controls.Add(this.ucSplitLine_V4);
1874             this.Margin = new System.Windows.Forms.Padding(0);
1875             this.Name = "UCKeyBorderAll";
1876             this.Size = new System.Drawing.Size(671, 273);
1877             this.tableLayoutPanel2.ResumeLayout(false);
1878             this.panel39.ResumeLayout(false);
1879             this.panel37.ResumeLayout(false);
1880             this.panel36.ResumeLayout(false);
1881             this.panel35.ResumeLayout(false);
1882             this.panel33.ResumeLayout(false);
1883             this.panel30.ResumeLayout(false);
1884             this.panel29.ResumeLayout(false);
1885             this.panel28.ResumeLayout(false);
1886             this.panel27.ResumeLayout(false);
1887             this.panel26.ResumeLayout(false);
1888             this.panel25.ResumeLayout(false);
1889             this.panel23.ResumeLayout(false);
1890             this.panel22.ResumeLayout(false);
1891             this.panel21.ResumeLayout(false);
1892             this.panel20.ResumeLayout(false);
1893             this.panel19.ResumeLayout(false);
1894             this.panel18.ResumeLayout(false);
1895             this.panel17.ResumeLayout(false);
1896             this.panel16.ResumeLayout(false);
1897             this.panel15.ResumeLayout(false);
1898             this.panel14.ResumeLayout(false);
1899             this.panel13.ResumeLayout(false);
1900             this.panel12.ResumeLayout(false);
1901             this.panel11.ResumeLayout(false);
1902             this.panel10.ResumeLayout(false);
1903             this.panel9.ResumeLayout(false);
1904             this.panel8.ResumeLayout(false);
1905             this.panel7.ResumeLayout(false);
1906             this.panel6.ResumeLayout(false);
1907             this.panel5.ResumeLayout(false);
1908             this.panel4.ResumeLayout(false);
1909             this.panel3.ResumeLayout(false);
1910             this.panel2.ResumeLayout(false);
1911             this.panel1.ResumeLayout(false);
1912             this.ResumeLayout(false);
1913 
1914         }
1915 
1916         #endregion
1917 
1918         private System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
1919         private System.Windows.Forms.Panel panel39;
1920         private System.Windows.Forms.Label label39;
1921         private UCSplitLine_V ucSplitLine_V39;
1922         private System.Windows.Forms.Panel panel37;
1923         private System.Windows.Forms.Label label37;
1924         private UCSplitLine_V ucSplitLine_V37;
1925         private System.Windows.Forms.Panel panel36;
1926         private System.Windows.Forms.Label label36;
1927         private UCSplitLine_V ucSplitLine_V36;
1928         private System.Windows.Forms.Panel panel35;
1929         private System.Windows.Forms.Label label35;
1930         private System.Windows.Forms.Panel panel33;
1931         private System.Windows.Forms.Label label33;
1932         private UCSplitLine_V ucSplitLine_V33;
1933         private System.Windows.Forms.Panel panel30;
1934         private System.Windows.Forms.Label label30;
1935         private UCSplitLine_H ucSplitLine_H30;
1936         private UCSplitLine_V ucSplitLine_V30;
1937         private System.Windows.Forms.Panel panel29;
1938         private System.Windows.Forms.Label label29;
1939         private UCSplitLine_H ucSplitLine_H29;
1940         private UCSplitLine_V ucSplitLine_V29;
1941         private System.Windows.Forms.Panel panel28;
1942         private System.Windows.Forms.Label label28;
1943         private UCSplitLine_H ucSplitLine_H28;
1944         private UCSplitLine_V ucSplitLine_V28;
1945         private System.Windows.Forms.Panel panel27;
1946         private System.Windows.Forms.Label label27;
1947         private UCSplitLine_H ucSplitLine_H27;
1948         private UCSplitLine_V ucSplitLine_V27;
1949         private System.Windows.Forms.Panel panel26;
1950         private System.Windows.Forms.Label label26;
1951         private UCSplitLine_H ucSplitLine_H26;
1952         private UCSplitLine_V ucSplitLine_V26;
1953         private System.Windows.Forms.Panel panel25;
1954         private System.Windows.Forms.Label label25;
1955         private UCSplitLine_H ucSplitLine_H25;
1956         private System.Windows.Forms.Panel panel23;
1957         private System.Windows.Forms.Label label23;
1958         private UCSplitLine_H ucSplitLine_H23;
1959         private UCSplitLine_V ucSplitLine_V23;
1960         private System.Windows.Forms.Panel panel22;
1961         private System.Windows.Forms.Label label22;
1962         private UCSplitLine_H ucSplitLine_H22;
1963         private UCSplitLine_V ucSplitLine_V22;
1964         private System.Windows.Forms.Panel panel21;
1965         private System.Windows.Forms.Label label21;
1966         private UCSplitLine_H ucSplitLine_H21;
1967         private UCSplitLine_V ucSplitLine_V21;
1968         private System.Windows.Forms.Panel panel20;
1969         private System.Windows.Forms.Label label20;
1970         private UCSplitLine_H ucSplitLine_H20;
1971         private UCSplitLine_V ucSplitLine_V20;
1972         private System.Windows.Forms.Panel panel19;
1973         private System.Windows.Forms.Label label19;
1974         private UCSplitLine_H ucSplitLine_H19;
1975         private UCSplitLine_V ucSplitLine_V19;
1976         private System.Windows.Forms.Panel panel18;
1977         private System.Windows.Forms.Label label18;
1978         private UCSplitLine_H ucSplitLine_H18;
1979         private UCSplitLine_V ucSplitLine_V18;
1980         private System.Windows.Forms.Panel panel17;
1981         private System.Windows.Forms.Label label17;
1982         private UCSplitLine_H ucSplitLine_H17;
1983         private UCSplitLine_V ucSplitLine_V17;
1984         private System.Windows.Forms.Panel panel16;
1985         private System.Windows.Forms.Label label16;
1986         private UCSplitLine_H ucSplitLine_H16;
1987         private UCSplitLine_V ucSplitLine_V16;
1988         private System.Windows.Forms.Panel panel15;
1989         private System.Windows.Forms.Label label15;
1990         private UCSplitLine_H ucSplitLine_H15;
1991         private UCSplitLine_V ucSplitLine_V15;
1992         private System.Windows.Forms.Panel panel14;
1993         private System.Windows.Forms.Label label14;
1994         private UCSplitLine_H ucSplitLine_H14;
1995         private System.Windows.Forms.Panel panel13;
1996         private System.Windows.Forms.Label label13;
1997         private UCSplitLine_H ucSplitLine_H13;
1998         private UCSplitLine_V ucSplitLine_V13;
1999         private System.Windows.Forms.Panel panel12;
2000         private System.Windows.Forms.Label label12;
2001         private UCSplitLine_H ucSplitLine_H12;
2002         private UCSplitLine_V ucSplitLine_V12;
2003         private System.Windows.Forms.Panel panel11;
2004         private System.Windows.Forms.Label label11;
2005         private UCSplitLine_H ucSplitLine_H11;
2006         private UCSplitLine_V ucSplitLine_V11;
2007         private System.Windows.Forms.Panel panel10;
2008         private System.Windows.Forms.Label label10;
2009         private UCSplitLine_H ucSplitLine_H10;
2010         private UCSplitLine_V ucSplitLine_V10;
2011         private System.Windows.Forms.Panel panel9;
2012         private System.Windows.Forms.Label label9;
2013         private UCSplitLine_H ucSplitLine_H9;
2014         private UCSplitLine_V ucSplitLine_V9;
2015         private System.Windows.Forms.Panel panel8;
2016         private System.Windows.Forms.Label label8;
2017         private UCSplitLine_H ucSplitLine_H8;
2018         private UCSplitLine_V ucSplitLine_V8;
2019         private System.Windows.Forms.Panel panel7;
2020         private System.Windows.Forms.Label label7;
2021         private UCSplitLine_H ucSplitLine_H7;
2022         private UCSplitLine_V ucSplitLine_V7;
2023         private System.Windows.Forms.Panel panel6;
2024         private System.Windows.Forms.Label label6;
2025         private UCSplitLine_H ucSplitLine_H6;
2026         private UCSplitLine_V ucSplitLine_V6;
2027         private System.Windows.Forms.Panel panel5;
2028         private System.Windows.Forms.Label label5;
2029         private UCSplitLine_H ucSplitLine_H5;
2030         private UCSplitLine_V ucSplitLine_V5;
2031         private System.Windows.Forms.Panel panel4;
2032         private System.Windows.Forms.Label label4;
2033         private UCSplitLine_H ucSplitLine_H4;
2034         private System.Windows.Forms.Panel panel3;
2035         private System.Windows.Forms.Label label3;
2036         private UCSplitLine_H ucSplitLine_H3;
2037         private UCSplitLine_V ucSplitLine_V3;
2038         private System.Windows.Forms.Panel panel2;
2039         private System.Windows.Forms.Label label2;
2040         private UCSplitLine_H ucSplitLine_H2;
2041         private UCSplitLine_V ucSplitLine_V2;
2042         private System.Windows.Forms.Panel panel1;
2043         private System.Windows.Forms.Label label1;
2044         private UCSplitLine_H ucSplitLine_H1;
2045         private UCSplitLine_V ucSplitLine_V1;
2046         private UCSplitLine_V ucSplitLine_V4;
2047         private UCSplitLine_V ucSplitLine_V14;
2048         private UCSplitLine_H ucSplitLine_H24;
2049         private UCSplitLine_H ucSplitLine_H31;
2050     }
2051 }

设计效果

用处及效果

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

本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2019-08-16 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 前提
  • 目录
  • 准备工作
  • 开始
  • 用处及效果
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档