How to raise an event on MS word Keypress
问题 I am developing a MS-Word addon in which my code has to get access to the letters the user is entering through the keyboard. 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); } I think the SelectionChange event can give me the text but the event is not raised at keypress, Is there any