Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
Are you using .NET 4.0? – Daniel A. White Nov 11 '10 at 13:44
Yes, I'm using NET 4 – Diego Nov 11 '10 at 13:45

3 Answers

up vote 22 down vote accepted

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.

share|improve this answer
I've recently noted that my application breaks in some windows which are not Windows 7. Do I have any other option than asking if its Windows 7 before setting the progress state? – Diego Nov 14 '11 at 19:09
if (Environment.OsVersion.Major >= 6) { ... } – Sebastian Godelet Mar 30 at 19:29

In WPF4 you have

 <Window.TaskbarItemInfo>
        <TaskbarItemInfo> </..>
 </...>
share|improve this answer
A really good example lives here: 10rem.net/blog/2009/10/29/… – Owen Johnson Mar 19 at 16:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.