views:

245

answers:

2

Hello,

I was seeing that when you do somethings at Windows 7 that haves a progress bar, things like downloading a file. You can see that in the programs bar, at the icon of the application, there is the progress of the file downloading, but it's possible to build applications that can do this?

Take a look at the Internet Explorer icon at my screenshot: Downloading...

Large version here.

+4  A: 

Yes.

http://code.msdn.microsoft.com/WindowsAPICodePack

This has a lot of Windows Vista/7 features for .NET (C#/VB/etc.), including Task Bar Progress Bars.

Daniel A. White
+2  A: 

Yes, you use the iTaskbarList3 interface, on which you call SetProgressState and SetProgressValue methods.

A more detailed overview on how to use the new Windows 7 taskbar functions is on the Windows team blog.

Mavrik