C# Winform制作虚拟键盘,支持中文
最近在做一个虚拟键盘功能,代替鼠标键盘操作,效果如下:
实现思路:
1 构建中文-拼音 数据库,我用的是SQLite数据库,如
2 构建布局,如效果图
代码:
数据库代码文件 SqlHandler.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data.SQLite;
using System.Configuration;
using System.IO;
using System.Reflection;
using System.Windows.Forms; namespace TestKeyBord
{ public class SqlHandler
{
public static void InitSQLite(string db,string table)
{
try
{
DbName = db;
TableName = table; if (CreateDataBase())
{
_SQLiteCommand = _SQLiteConn.CreateCommand();
_SQLiteCommand.Connection = _SQLiteConn;
DesignerTable();
}
}
catch
{ }
} public static System.Data.ConnectionState SqliteState
{
get { return _SQLiteConn.State; }
} #region 数据成员定义 public static string DbName = "MedicalSystemLog";
public static string TableName = "MedicalLog";
public static string _SQLiteConnString = string.Empty; public static SQLiteConnection _SQLiteConn = new SQLiteConnection(); public static SQLiteCommand _SQLiteCommand = new SQLiteCommand(); #endregion #region 创建数据库文件 public static bool CreateDataBase()
{
try
{
_SQLiteConnString = "Data Source=" + DbName + ".db";
_SQLiteConn = new SQLiteConnection(_SQLiteConnString);
_SQLiteConn.Open();
_SQLiteCommand = _SQLiteConn.CreateCommand();
_SQLiteCommand.Connection = _SQLiteConn; if (File.Exists(DbName + ".db"))
{
return true;
}
}
catch
{
// MessageBox.Show("日志系统加载失败!");
}
return false;
} #endregion /// <summary>
/// 矩阵是否连接
/// </summary>
public static bool MatrixIsConnected = false; #region 创建表 public static void DesignerTable()
{
try
{
if (_SQLiteConn.State != System.Data.ConnectionState.Open)
{
_SQLiteConn.Open();
} List<string> list = new List<string> { };
list.Add("ID VARCHAR(5)");//汉字ID
list.Add("Chinese VARCHAR(5)");//汉字
list.Add("English VARCHAR(10)");//拼音
CreateTabel(TableName, list);
list.Clear();
}
catch
{
// MessageBox.Show("创建日志数据库失败!");
}
} public static bool ClearSystemLog()
{
try
{ if (_SQLiteConn.State != System.Data.ConnectionState.Open)
{
_SQLiteConn.Open();
} if (_SQLiteConn.State == System.Data.ConnectionState.Open)
{ _SQLiteCommand.CommandText = "delete from " + TableName + ";";
_SQLiteCommand.ExecuteNonQuery(); } _SQLiteConn.Close();
} catch (Exception ex)
{
// MessageBox.Show("清除日志失败:" + ex.Message);
return false;
}
return true;
} public static bool InsertData(string cn,string en,string id)
{
try
{ if (_SQLiteConn.State != System.Data.ConnectionState.Open)
{
_SQLiteConn.Open();
} if (_SQLiteConn.State == System.Data.ConnectionState.Open)
{ _SQLiteCommand.CommandText = "insert into " + TableName + " values('" +
id + "','" + cn + "','" + en + "');";
_SQLiteCommand.ExecuteNonQuery(); } _SQLiteConn.Close();
}
catch (Exception ex)
{
// MessageBox.Show("日志写入失败:" + ex.Message);
return false;
}
return true;
} public static List<string[]> GetData(string en)
{
List<string[]> list = new List<string[]> { }; try
{ _SQLiteCommand.CommandText = "select * from " + TableName + " where English='"+en+"';"; using (SQLiteDataReader reader = _SQLiteCommand.ExecuteReader())
{ string[] items = new string[] { }; while (reader.Read())
{
items = new string[]
{
reader[0].ToString(),
reader[1].ToString(),
reader[2].ToString(),
};
list.Add(items);
} }
} catch (Exception ex)
{
MessageBox.Show(ex.Message + "=== GetDocInfo() ===" + ex.StackTrace);
}
return list;
} public static List<string> GetZnData(string en)
{ en = en.ToLower(); ; List<string> list = new List<string> { }; try
{ _SQLiteCommand.CommandText = "select * from " + TableName + " where English='" + en + "';";
// MessageBox.Show(_SQLiteCommand.CommandText);
using (SQLiteDataReader reader = _SQLiteCommand.ExecuteReader())
{ string[] items = new string[] { }; while (reader.Read())
{ list.Add(reader["Chinese"].ToString());
} }
} catch (Exception ex)
{
MessageBox.Show(ex.Message + "=== GetDocInfo() 2222 ===" + ex.StackTrace);
}
return list;
} public static void CreateTabel(string tableName,List<string> columes )
{
if (_SQLiteConn.State != System.Data.ConnectionState.Open)
{
_SQLiteConn.Open();
} if (_SQLiteConn.State == System.Data.ConnectionState.Open)
{ string sql = "SELECT COUNT(*) FROM sqlite_master where type='table' and name='" + tableName + "';"; _SQLiteCommand.CommandText = sql; if (Convert.ToInt32(_SQLiteCommand.ExecuteScalar()) == 0)//1表示存在,0表示不存
{
sql = string.Empty; foreach (string str in columes)
{
sql += str + ",";
} _SQLiteCommand.CommandText = string.Format(
"CREATE TABLE {0} (" + sql.Substring(0, sql.Length - 1) + ")"
, tableName); _SQLiteCommand.ExecuteNonQuery();
_SQLiteConn.Close();
} }
else
{
MessageBox.Show("创建表失败,请打开数据库!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
} public static string PinConvert(string en)
{
string data = "";
string enLow = en.ToLower();
for (int i = 0; i < enLow.Length; i++)
{
if (enLow[i].ToString() == "ā")
{ }
}
return data;
} #endregion
}
}
源码下载地址: http://download.csdn.net/detail/taoerit/9686889
更新 2017-2-13 ,还有个简单的方法
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Runtime.InteropServices; namespace TestForm
{
public partial class Form1 : Form
{
[DllImport("user32.dll", EntryPoint = "keybd_event")]
public static extern void keybd_event(
byte bVk, //定义一个虚据拟键码。键码值必须在1~254之间。
byte bScan, //定义该键的硬件扫描码
int dwFlags,
int dwExtraInfo
); private void button1_Click(object sender, EventArgs e)
{
// 81 表示Q,具体看虚拟键盘表示码
textBox1.Focus();
keybd_event(81, 0, 0, 0); //Q压下
keybd_event(81, 0, 0x02, 0); //Q弹起
} public Form1()
{
InitializeComponent();
} private void Form1_Load(object sender, EventArgs e)
{
} }
}
虚拟键盘码
C# Winform制作虚拟键盘,支持中文的更多相关文章
- C# WinForm制作电子琴键盘
上一篇 http://hovertree.com/h/bjaf/y8qol2p4.htm 再上一篇的基础上,使用WinForm制作了一个电子琴键盘: 演示地址 http://hovertree.com ...
- 利用zxing制作彩色,高容错,支持中文等UTF编码的QR二维码图片
利用zxing制作彩色,高容错,支持中文等UTF编码的QR二维码图片.代码如下 import java.awt.Color;import java.io.File;import java.util.H ...
- 《Genesis-3D开源游戏引擎--横版格斗游戏制作教程08:虚拟键盘实现》--本系列完结
8.虚拟键盘实现 概述: 硬键盘就是物理键盘,平时敲的那种.软键盘是虚拟的键盘,不是在键盘上,而是在"屏幕"上.虚拟按键就是虚拟键盘的一部分,根据功能需求,提供部分按键效果的UI可 ...
- Xcode6.1模拟器ios8.1模拟器不能弹出虚拟键盘及虚拟键盘无法切换中文输入的解决办法
1.不能弹出虚拟键盘的解决办法 模拟器菜单Hardware->Keyboard->Connect Hardware Keyboard取消选中,快捷键commad+shift+K 2.虚拟键 ...
- [原创]cocos2d-x研习录-第三阶 特性之按键与虚拟键盘
Cocos2D-x引擎支持按键事件,它能检测设备的键盘输入并处理相应的事件.而基于不同操作系统的移动设备,可供用户操作的按键数量和功能都存在差异. Cocos2D-x使用CCKeypadDeleg ...
- 重新想象 Windows 8 Store Apps (49) - 输入: 获取输入设备信息, 虚拟键盘, Tab 导航, Pointer, Tap, Drag, Drop
[源码下载] 重新想象 Windows 8 Store Apps (49) - 输入: 获取输入设备信息, 虚拟键盘, Tab 导航, Pointer, Tap, Drag, Drop 作者:weba ...
- Ubuntu CTRL+ALT+F1~F6 进入命令模式后不支持中文显示的解决办法
前言 我在实验进入linux系统启动xwindow server而不启动KDE GNOME等桌面系统时遇到的问题.只启动x server而不启动桌面系统,在xserver之上运行一个全屏的图形界面程序 ...
- 隐藏虚拟键盘,解决键盘挡住UITextField问题
再正式开始之前,先来介绍一下IOS的键盘类型: 一.键盘风格 UIKit框架支持8种风格键盘 ? 1 2 3 4 5 6 7 8 9 10 typedef enum { UIKeyboard ...
- 收起虚拟键盘的各种方法 -- IOS
使用虚拟键盘来输入资讯,是 iOS 的重要互动方式之一,虚拟键盘通常会自动出现在可以编辑的 UITextField 或是 UITextView 的编辑事件中,叫出键盘固然容易,但是要把它收起来,可就没 ...
随机推荐
- session了解及超时处理
Session了解 Session是什么 引言 在web开发中,session是个非常重要的概念.在许多动态网站的开发者看来,session就是一个变量,而且其表现像个黑洞,他只需要将东西在合 ...
- jquery 点击其他地方
<script type="text/javascript"> function stopPropagation(e) { if (e.stopPropagation) ...
- 【codeforces 754D】Fedor and coupons
time limit per test4 seconds memory limit per test256 megabytes inputstandard input outputstandard o ...
- oracle11g 在azure云中使用rman进行实例迁移
1,開始备份 备份脚本rman_full_backup.sh内容例如以下: #!/bin/sh export DATE=`date +%F` export BACK_DIR='/backupdisk/ ...
- URL传递中文参数,大坑一枚,Windows与Linux效果竟然不一致(两种解决方法)
下午,计划2个小时搞定,个人官网第6次升级,就可以干点轻松的事了,结果,下午多搞了2个小时,晚上又搞了2个小时,才搞定. 最后一个世界难题是,URL传递中文参数. 问题大致是这么出现的:我为" ...
- Dropout 理论基础与实战细节
Dropout: A Simple Way to Prevent Neural Networks from Overfitting 对于 dropout 层,在训练时节点保留率(keep probab ...
- eCognition学习记录
作者:朱金灿 来源:http://blog.csdn.net/clever101 昨天公司从外面请了人讲解eCognition的最新进展及项目二次开发应用情况.我做了大致下面记录: 1. eCogn ...
- Session Redis Nginx
Session + Redis + Nginx 一.Session 1.Session 介绍 我相信,搞Web开发的对Session一定再熟悉不过了,所以我就简单的介绍一下. Session:在计算机 ...
- Method for performing cache coherency in a computer system
In a computing system, cache coherency is performed by selecting one of a plurality of coherency pro ...
- hdu1845 Jimmy’s Assignment --- 完整匹配
意甲冠军: 它需要一个特殊的图,以找到最大匹配.该图的特征是:无向图,度的每个节点3.这是一个双边连接组件(the graph is 2-edge-connected (that is, at lea ...