Home > Mobile >  Windows 11 TaskBar API to add or remove icons?
Windows 11 TaskBar API to add or remove icons?

Time:11-11

Does Windows 11 have an API or other method to programmably add/remove icons from the taskbar?

CodePudding user response:

The ITaskbarList interface has AddTab() and DeleteTab() methods.

  • Related