C# 屏幕取词

时间:2011-05-08 16:29:04
【文件属性】:

文件名称:C# 屏幕取词

文件大小:44KB

文件格式:RAR

更新时间:2011-05-08 16:29:04

屏幕取词

C# 屏幕取词
在金山词霸中2005中带了一个XdictGrb.dll,添加引用
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Text;
using System.Windows.Forms;
using XDICTGRB;//金山词霸组件
namespace WindowsApplication1
{
public partial class Form1 : Form,IXDictGrabSink
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
GrabProxy gp = new GrabProxy();
gp.GrabInterval = 1;//指抓取时间间隔
gp.GrabMode = XDictGrabModeEnum.XDictGrabMouse;//设定取词的属性
gp.GrabEnabled = true;//是否取词的属性
gp.AdviseGrab(this);
}
//接口的实现
int IXDictGrabSink.QueryWord(string WordString, int lCursorX, int lCursorY, string SentenceString, ref int lLoc, ref int lStart)
{
this.textBox1.Text = SentenceString;//鼠标所在语句
//this.textBox1.Text = SentenceString.Substring(lLoc + 1,1);//鼠标所在字符
return 1;
}
}
}


【文件预览】:
XdictGrb.dll

网友评论

  • 谢谢,可以用
  • 好像用不了。
  • 只有一个dll,根本没有代码
  • 编译通过的,但是不会用
  • win7用不了!
  • 好像用不了。
  • win7 64位表示可以实现
  • 例子不错 可以运行。不错哦
  • 似乎不能用,是不是对操作系统有要求?
  • 我是win7的vs2012,那个dll提示无法加载
  • 就是金山 W7不行的
  • win7下好象没法用啊?????
  • 这个不行,金山W7下好像也不行
  • 编译通过的,但是不会用
  • 不行实现不了取屏,,,
  • 就是金山 W7不行的
  • 完全不能在WIN7下实现。
  • 例子写得很详细,但是貌似还不能实现