拦截剪贴板更改
如何在 C++ 中一般拦截剪贴板更改?例如,我想编写一个 Windows 服务来拦截任何 Ctrl-C。是否可以?如何?
先感谢您。
詹姆斯
how it is possible to generally intercept clipboard changes in C++? E.g. I would like to write a Windows Service that intercepts any Ctrl-C. Is it possible? How?
Thank you in advance.
James
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要的是“Windows 剪贴板挂钩”。 Google 搜索此术语提供了大量信息,例如,CodeProject 上的此库 ,这似乎符合您的要求。
What you need is a "windows clipboard hook". Google search on this term gives plenty of information, for example, this library on CodeProject, which seems to fit your requirements.