触控一体机输入法 专为触控一体机设计的智能输入法,包含有以下功能: 支持全键盘、九宫格(T9模式)智能拼音、身份证键盘,数字键盘等。 支持手写识别。 支持智能笔画(T9笔画)。 可以定制皮肤、皮肤更换,自定义Layout(键盘布局)。 支持记忆、调频。 可以随意修改输入法面板的尺寸,可以很好适应各种尺寸的屏幕。 有丰富的符号表供使用。 界面支持半透明,即使被输入法档住的内容也可以看到。 支持焦点跟踪,有输入跟踪可以自动弹出。 允许最小化,开启关闭更加方便。 丰富的二次开发接口,让您灵活定制无缝对接。 支持命令行调用各种功能,可以降低二次开发难度。 支持url方式调用,可以直接在浏览器上调用输入法,直接用html、js 控制输入法。 浏览器内自动弹出,兼容各种浏览器。(2018新) 新布局框架,可以实现更多特效键盘。(2018新) 版本V1.5.0最新加入多字识别功能,可以连续手写短句。(2018新) 增加ActiveX(OCX)控制控件,使输入法和IE浏览器可以完美结合。(2018.9.13新) 增加全屏手写识别,整个屏幕都可以写字,欢迎下载试用。(2018.9.21最新) 增加支持【86五笔字型】、【繁体仓颉】、【韩语拼音】。(2018.9.29最新)
1
delphi 微软手写输入法源码 interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, OleServer, MSINKAUTLib_TLB, ExtCtrls, StdCtrls, MSINKAUTLib; type TForm1 = class(TForm) InkCLT: TInkCollector; Memo1: TMemo; Panel1: TPanel; Button1: TButton; InkRecognizerContext1: TInkRecognizerContext; procedure FormCreate(Sender: TObject); procedure InkCLTStroke(ASender: TObject; const Cursor: IInkCursor; const Stroke: IInkStrokeDisp; var Cancel: WordBool); procedure Button1Click(Sender: TObject); private { Private declarations } public { Public declarations } end; var Form1: TForm1; implementation {$R *.dfm} procedure TForm1.FormCreate(Sender: TObject); begin InkCLT.hWnd := panel1.Handle; InkCLT.Enabled := true; InkCLT.DefaultDrawingAttributes.Color := clRed; // 墨水颜色 InkCLT.DefaultDrawingAttributes.Width := 200; // 笔的宽度 end; procedure TForm1.InkCLTStroke(ASender: TObject; const Cursor: IInkCursor; const Stroke: IInkStrokeDisp; var Cancel: WordBool); begin Memo1.Lines.Clear; Memo1.Lines.Add(Stroke.Ink.Strokes.ToString); end; procedure TForm1.Button1Click(Sender: TObject); begin InkCLT.Ink.DeleteStrokes(InkCLT.Ink.Strokes); Panel1.Refresh; end; end.
2019-12-21 22:14:22 9.38MB 手写输入法
1
QT平台的中文输入法,有智能拼音,笔画,手写识别,英文字母,支持全键盘和九宫格(T9)两种模式,界面做得不错,这个版本是windows 下的适合在windows 做测试时用。arm版本要找官方索取。
1
c#版的手写模拟键盘输入工具,非常好用,可以运用到触摸屏上,c#版的手写模拟键盘输入工具,非常好用,可以运用到触摸屏上,c#版的手写模拟键盘输入工具,非常好用,可以运用到触摸屏上,
2019-12-21 20:10:24 625KB 手写输入法
1