Windows 中的上下文菜单条目
我正在寻找一种具有更多选项的上下文菜单的方法,例如复制文本并将其发送到服务器或翻译器。关于如何执行此操作有什么建议吗?
编辑:右键单击一个字符串,这将允许我将该字符串解析为我的应用程序。 (所以在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有关添加文件类型处理程序的信息,请参阅 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\*
orHKEY_CLASSES_ROOT\AllFilesystemObjects
)