我正在开发一个 MS-Word 插件,其中我的代码必须访问用户通过键盘输入的字母。
private void ThisDocument_Startup(object sender, System.EventArgs e)
{
this.SelectionChange += new SelectionEventHandler(ThisDocument_SelectionChange);
}
void ThisDocument_SelectionChange(object sender, SelectionEventArgs e)
{
MessageBox.Show(e.Selection.Text);
}
我认为 SelectionChange 事件可以给我文本,但在按键时不会引发事件,有没有办法在按键时触发事件?此外,如果有更直接的方法或提供该功能的开源项目,那将是受欢迎的。