How to group different apps in Windows task bar?

爷,独闯天下 提交于 2019-12-04 01:26:41

问题


I have 5 different C# application running at the same time on my PC. They take a lot of space at my taskbar. How can I code them to be grouped together at the taskbar (using windows 10).


回答1:


You need to pinvoke SetCurrentProcessExplicitAppUserModelID() supplying the same AppID for all the applications that you want to share a taskbar button. The OS will then treat your 5 applications as if they were the same application.

Make sure to call SetCurrentProcessExplicitAppUserModelID() before any of your application's UI is displayed.

[DllImport("shell32.dll", SetLastError=true)]
static extern void SetCurrentProcessExplicitAppUserModelID( 
    [MarshalAs( UnmanagedType.LPWStr )] string AppID );

private static string AppID = "some guid"; // use the same ID in all 5 apps

...

SetCurrentProcessExplicitAppUserModelID(AppID);



回答2:


I haven't experimented with this, but you might want to look at the TaskbarItemInfo Class. I think the property ThumbButtonInfos may be the key.

Oh, I also just found this on stack over flow: control windows 7 taskbar grouping for my application

Hope this helps.



来源:https://stackoverflow.com/questions/34901124/how-to-group-different-apps-in-windows-task-bar

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!