How I can handle the windows 7 taskbar to get an effect like the image from a .Net 2 based application?

Thank you
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Check out this project: Windows® API Code Pack for Microsoft® .NET Framework
It’s an attempt to wrap the functions exposed in newer versions of the native Windows API so that you can call them easily from a managed .NET application. Specifically, it supports “Jump Lists, Icon Overlay, Progress Bar, Tabbed Thumbnails, and Thumbnail Toolbars” for the new Windows 7 taskbar.
Unfortunately, you won’t be able to use the library directly from your .NET 2.0 application, as it requires a minimum version of 3.5 SP1. But you could certainly download the project and check out the code that they’ve used to implement the features, then write the P/Invoke definitions yourself. I can’t think of anything that would prevent you from doing this in version 2.0 of the Framework.