How to set the Taskbar Grouping Icon

2019-01-24 12:04发布

When my application opens too many windows the taskbar groups them into one button. Each window has its own icon, but the grouping icon is the default "unknown"-kind icon.

How can I set the grouping icon?

3条回答
女痞
2楼-- · 2019-01-24 12:43

Application taskbar group icon can be set in two ways

  1. Through Project Properties:

    Click Project in solution explorer → right click → select properties → select Application tab → go to resoruces and change the default icon and select the newicon and save and build.

  2. Through Registry(Dynamic):

    You have to create TaskbarGroupIcon key and value is "icon file with path" under "HKEY_CURRENT_USER\SOFTWARE\Classes\Applications\<>" If above keys are not present you have to create

    RegistryKey RegKey = Registry.CurrentUser.OpenSubKey(
       "Software\\Classes\\Applications\temp.exe",true); 
    RegKey.SetValue("TaskbarGroupIcon", "c:\temp.ico", RegistryValueKind.String);
    
查看更多
可以哭但决不认输i
3楼-- · 2019-01-24 12:59

The taskbar group icon can be set in the registry on a per application basis.

For explorer, this would be here:

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Applications\explorer.exe]
"TaskbarGroupIcon"="C:\Windows\Explorer.exe,13"
查看更多
倾城 Initia
4楼-- · 2019-01-24 13:03

This comment from Raymond Chen indicates that the icon is coming from the exe itself, I would suggest using something like eXeScope to make sure that your application icon is being embedded properly, and maybe compare it with other exes that display proper behavior to do delta debugging.

查看更多
登录 后发表回答