How to create buttons in taskbar menu Windows 7 C#? -


how make buttons appear in windows 7 taskbar image below has setup?

http://i.stack.imgur.com/zch1z.png

buttons in tasbar

how create buttons in taskbar tooltiptext on button picture above?

c# windows form.

thanks.

you should @ windows api code pack, give require.

the feature called 'thumbnail toolbar'. there icons can use on buttons in systemicons class.

thumbnailtoolbarbutton infobutton = new thumbnailtoolbarbutton(systemicons.information, "information"); infobutton.click += delegate {     // action };  taskbarmanager.instance.thumbnailtoolbars.addbuttons(this.handle, infobutton); 

Comments