views:

2929

answers:

3

If you've noticed in the Windows 7 beta, if you copy files or other system actions, the windows explorer icon in the taskbar will fill up with a green progress bar equivalent to the progress bar on the form. Is there a way that, in my C# forms, I can force my taskbar progress bar to match the progress of whatever task I'm doing? Converting, transferring, generating, there are so many uses for that progress bar.

+13  A: 

Look into the Windows API Code Pack for Microsoft .Net Framework.

Joe
Even includes a nice video on this very topic.
Larsenal
+2  A: 

Yes, you need to use this API.

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

Alex
+1  A: 

Yes, Microsoft covered the new taskbar functions in the following document (sources included): Windows 7 taskbar: Developer Resources

arul