在 Windows 上下文菜单中添加子菜单
我想在Windows的右键菜单中添加一个子菜单。每当用户右键单击文件或文件夹时,我的应用程序名称和子菜单都必须出现在那里。
这要怎么处理呢?
I want to add a sub-menu to the right-click menu of Windows. Whenever a user right-clicks on a file or a folder, my application name with the sub-menu must appear there.
How to handle this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您想要编辑 Windows 资源管理器上下文菜单。您可以通过几种不同的方式来执行此操作:
有一个实用程序 http://www.ghacks.net/2010/08/15/add-custom-items-to-windows-explorer-context-menu/ 其中提供了一些手持功能。看起来它还可以让您直接添加子菜单。
在注册表中手动添加适当的条目;请参阅http://support.microsoft.com/kb/321379/en-us 可能对测试有用,但通常很麻烦。
创建 .reg 文件以自动添加条目。不太容易出错,但仍然很危险。
You want to edit the Windows Explorer context menu. You can do this in a couple of different ways:
There is a utility at http://www.ghacks.net/2010/08/15/add-custom-items-to-windows-explorer-context-menu/ which provides a bit of hand-holding. It looks like it will also let you add sub-menus directly.
Manually add the appropriate entries in the registry; see http://support.microsoft.com/kb/321379/en-us May be useful for testing, but generally nasty.
Create a .reg file to add the entries automatically. A bit less error-prone, but still hazardous.