Windows 7 Taskbar in 10 Minutes -- Part I: Progress Bar
- Posted: May 09, 2009 at 2:06 PM
- 15,875 Views
- 2 Comments
Loading User Information from Channel 9
Something went wrong getting user information from Channel 9
Loading User Information from MSDN
Something went wrong getting user information from MSDN
Loading Visual Studio Achievements
Something went wrong getting the Visual Studio Achievements
Right click “Save as…”
Part I -- ProgressBar and Status:
In the first part of my screencast series I develop an application that allows to
http://channel9.msdn.com/posts/GLenz/Windows-7-Taskbar-in-10-Minutes-Part-I-Progress-Bar/ . The source code is available here .
The Windows API Code Pack can be downloaded here.
The other parts of the screencast series can be wonloaded @
Part IV -- Preview and Window Peek:
In the last part of the screencast series I show you how to develop an application that
http://channel9.msdn.com/posts/GLenz/Windows-7-Taskbar-in-10-Minutes-Part-IV-Preview-and-Peek/
The source code is available
here.
You can download the managed wrappers for the Windows 7 API from the
Vista Bridge web page.
Part III -- JumpList:
In this part I show you how to develop an application that
http://channel9.msdn.com/posts/GLenz/Windows-7-Taskbar-in-10-Minutes-Part-III-Jumplists/ . The source code is available here.
Part II -- Icon Overlay:
In this part I show you how to implement custom Icon Overlays in the taskbar indicating the happiness (happy/unhappy) of your application. In your applications you can use this to
http://channel9.msdn.com/posts/GLenz/Windows-7-Taskbar-in-10-Minutes-Part-II-Icon-Overlay/
The source code is available here.
I hope you found the series of Screencasts useful and to the point
.
Also, check out my blog at
http://blogs.msdn.com/glenz .
Comments have been closed since this content was published more than 30 days ago, but if you'd like to continue the conversation,
please create a new thread in our Forums,
or
Contact Us and let us know.
Follow the Discussion
Oops, something didn't work.
What does this mean?
Following an item on Channel 9 allows you to watch for new content and comments that you are interested in. You need to be signed in to Channel 9 to use this feature.What does this mean?
Following an item on Channel 9 allows you to watch for new content and comments that you are interested in and view them all on your notifications page.sign up for email notifications?
If I may be so bold as to suggest a somewhat more solid approach to your enum values sir.
On form initialization do:
comboBox1.DataSource =
Enum.GetValues(typeof(TaskbarButtonProgressState));
and then on the selectedindexchanged of your combobox do:
Taskbar
.ProgressBar.State = (TaskbarButtonProgressState)comboBox1.SelectedValue;
The only real difference being that future changes to this enum, which normally would not be under my direct change control, would not cause the code to be rewritten or revisited in any way other than recompile with new referenced assemblies or projects.
It's also faster and safer to code (than human typed strings, assuming you are human).
Just as a way to avoid erring. Which I personally at least do enough of.
Nice introductory tutorial to the taskbar, and works like a charm. Pity the resolution even in high wma/wmv doesnt allow one to see the actual code really well.
Hi
Can we do this for windows XP?
Thanks
Remove this comment
Remove this thread
close