Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

.NET Progress bar in taskbar on windows 7

Tags:

How can I make my winforms app to show its progress bar in the icon of the taskbar on windows 7?

e.g: chrome with downloads.

Thanks!!

Diego

like image 339
Diego Avatar asked Nov 11 '10 13:11

Diego


1 Answers

You have to download the Windows API Code Pack for .NET and use those components to interact with Windows 7 (assuming you're not using .NET 4.0).

If you are using .NET 4.0, you should include the System.Windows.Shell namespace to gain access to the Windows 7 task bar features.

like image 200
Justin Niessner Avatar answered Oct 24 '22 00:10

Justin Niessner