delphi,对复制操作做出反应或执行粘贴

发布于 2024-10-06 22:50:48 字数 89 浏览 2 评论 0原文

当用户单击 ctrl+v (我想为剪贴板分配一个新值)时,如何始终在我的应用程序中执行操作,或者当用户单击我的应用程序中的全局热键时,如何在活动窗口中粘贴某些内容?

How to execute an action in my app always when user click ctrl+v (I want to assign a new alue to clipboard), or how to paste something in active window, when user clicks global hotkey in my app?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

听,心雨的声音 2024-10-13 22:50:48

When something is pasted the control will receive the WM_PASTE message. So you can intercept this Message.

你又不是我 2024-10-13 22:50:48

最简单的方法(不知道主窗体上还有什么)是向主菜单添加名为“复制/粘贴”的项目 - 使用快捷键 Ctrl-C 和 Ctrl-V。实现例程以响应这些菜单项单击事件(或使用操作),您的代码将被调用...

Simplest way (without knowing what else is on your main form) is to add to your main menu items called Copy / Paste - make the shortcuts Ctrl-C and Ctrl-V. Implement routines in response to these menu items click events (or use actions) and your code will get called...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文