如何给这个右键菜单设置图标?

发布于 2024-11-26 00:13:16 字数 179 浏览 1 评论 0原文

我可以使用注册表为文件夹右键菜单添加一个新项目:

HKEY_CLASSES_ROOT\folder\shell\您的项目名称

但我不知道如何为创建的项目设置图标,如下所示:

有人可以帮助我吗?

I can add a new item for the folders right click menu using registry:

HKEY_CLASSES_ROOT\folder\shell\Your item name

But i don't know how to set a icon for created item like this :

enter image description here

May somebody help me?

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

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

发布评论

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

评论(2

讽刺将军 2024-12-03 00:13:16

要在单击文件夹时创建带有图标的自定义上下文菜单,请按照下列步骤操作:

  1. 在 HKEY_CLASSES_ROOT\folder\shell\ 下创建一个新键:“MyContextMenu”
  2. 在 HKEY_CLASSES_ROOT\folder\shell\MyContextMenu 下编辑(默认)键以指定要在上下文菜单中显示的文本:MyMenu
  3. 要在选择菜单时执行命令,请添加新的键名称“Command”并设置要在其菜单中执行的命令(默认)值。例如: cmd.exe
  4. 现在要设置图标,您添加一个新的字符串值 name Icon 并将其值设置为您想要显示的 *.ico,或者您可以使用 [dll 的名称] 引用嵌入在 dll 中的 ico ],[图标编号] 许多默认的 Windows 图标都在 imageres.dll 中。因此,对于本示例,将值设置为: c:\windows\system32\imageres.dll,10

有一个很好的工具,名为 iconviewer,您可以使用它来检查 dll 中的图标。安装后,您可以右键单击一个 dll,打开它的属性,一个带有其图标的额外选项卡将添加到属性页面

To create a custom context menu with an icon when clicking on a folder follow these steps:

  1. Under HKEY_CLASSES_ROOT\folder\shell\ create a new key: "MyContextMenu"
  2. Under HKEY_CLASSES_ROOT\folder\shell\MyContextMenu edit the (Default) key to specify the text to show in the context menu: MyMenu
  3. To execute a command when the menu is chosen add a new key name "Command" and set the commmand to execute in it's (Default) value. For instance: cmd.exe
  4. Now to set the icon you add a new string value name Icon and set it's value to the *.ico you want to show or you can reference an ico that is embedded in a dll using [name of the dll],[icon number] A lot of the default windows icons are in imageres.dll. So for this example set the value to: c:\windows\system32\imageres.dll,10

There is a nice tool called iconviewer that you can use to examine icons in dlls. After you install it you can right click a dll, open it's properties and an extra tab with it's icons will be added to the propery pages

﹏雨一样淡蓝的深情 2024-12-03 00:13:16

您应该在此键中添加 iconpath 以显示用户何时单击右键。
尝试编写键 OpenWithProgIds,然后使用应用程序的名称(路径)创建值。
回收示例:

TRegistry *key=new TRegistry(KEY_ALL_ACCESS);
    key->RootKey=HKEY_LOCAL_MACHINE;
    key->OpenKey("Software\\Classes\\CLSID\\{645FF040-5081-101B-9F08-00AA002F954E}\\shell", false);
    key->OpenKey("Prog_name", true);
    key->WriteString("Icon", ExtractFileDir(Application->ExeName)+"\\icon_prog.ico");
    key->OpenKey("command", true);
    key->WriteString("", ExtractFileDir(Application->ExeName)+"\\Program.exe");
    key->CloseKey();

You should to add iconpath in this key for showing when the user clicked right button.
Try to write key OpenWithProgIds, and then create value with name (path) of your application.
Example for recycle:

TRegistry *key=new TRegistry(KEY_ALL_ACCESS);
    key->RootKey=HKEY_LOCAL_MACHINE;
    key->OpenKey("Software\\Classes\\CLSID\\{645FF040-5081-101B-9F08-00AA002F954E}\\shell", false);
    key->OpenKey("Prog_name", true);
    key->WriteString("Icon", ExtractFileDir(Application->ExeName)+"\\icon_prog.ico");
    key->OpenKey("command", true);
    key->WriteString("", ExtractFileDir(Application->ExeName)+"\\Program.exe");
    key->CloseKey();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文