Windows 中的上下文菜单条目

发布于 2024-10-29 13:02:54 字数 126 浏览 0 评论 0原文

我正在寻找一种具有更多选项的上下文菜单的方法,例如复制文本并将其发送到服务器或翻译器。关于如何执行此操作有什么建议吗?

编辑:右键单击一个字符串,这将允许我将该字符串解析为我的应用程序。 (所以在 Win 资源管理器中)。

Im looking for a way to have the context menu with more options, like copying text and sending it to a server, or translator. Any suggestions on how to do this?

Edit: Right clicking a string, which will allow me to parse that string into an aplication of mine. (So in Win Explorer).

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

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

发布评论

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

评论(1

ら栖息 2024-11-05 13:02:54

有关添加文件类型处理程序的信息,请参阅 MSDN。

基本上,您有两个选择;您可以注册一个执行应用程序的简单静态动词(并将文件名作为参数传递),或者您可以创建一个实现 IContextMenu 的 shell 扩展。

MSDN 有有关这两种方法的信息(如果您想处理任何文件类型,请注册您自己位于 HKEY_CLASSES_ROOT\*HKEY_CLASSES_ROOT\AllFilesystemObjects 下)

See MSDN for information about adding file type handlers

You basically have two options; you can register a simple static verb that executes a application (and passing the filename as a parameter), or you can create a shell extension that implements IContextMenu.

MSDN has information about both methods (If you want to handle any file type, register yourself under HKEY_CLASSES_ROOT\* or HKEY_CLASSES_ROOT\AllFilesystemObjects)

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