vsto excel按键事件
我正在开发一个 vsto excel 项目,我想捕获工作表上的按键和按键事件。
我已经尝试过 globalKeyboardHook
但它给出了例外,请任何人有解决方案,请提供正确方向的指导。
我想捕获单元格内容,并在用户在单元格中键入时根据内容提供自动建议功能。
先感谢您。
i am working on a vsto excel project, and i want to capture keypress, and keydown events on the worksheet.
i have tried globalKeyboardHook
but it gives exception, please any one have a solution, please provide guidance in right direction.
i want to capture the cell contents and provide auto suggest feature based on the contents, as the user types in the cell.
thank you in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 GetAsyncKeyState() WinAPI 函数轻松实现它,但如果您需要一个需要在不同环境下工作的可靠应用程序,那么这将是一个不好的做法。
You can easily achieve it using the GetAsyncKeyState() WinAPI function, but it would be a bad practice if you need a solid application that needs to work on different environments.