This article demostrates how to use Visual Studio IDE to implement a status bar in a WinForms app. To learn more about Status Bar, and its properties in detail, please refer to StatusStrip in Windows Forms.
If you've used a StatusBar control in Visual Studio .NET, you must get annoyed when you want to add a progress bar, a drop down control, or an image to the StatusBar.
StatusStrip control, available in Visual Studio, is a powerful StatusBar control with the features provided by StatusBar in previous versions. Besides status bar features, StatusStrip also provides ProgressBar, DropDownButton, SplitButton, and Label features, which means we can add a progress bar, a drop down button, a spit button, or a label control to the StatusStrip itself.
If you've used a StatusBar control in Visual Studio .NET, you must get annoyed when you want to add a progress bar, a drop down control, or an image to the StatusBar.
StatusStrip control, available in Visual Studio, is a powerful StatusBar control with the features provided by StatusBar in previous versions. Besides status bar features, StatusStrip also provides ProgressBar, DropDownButton, SplitButton, and Label features, which means we can add a progress bar, a drop down button, a spit button, or a label control to the StatusStrip itself.
If you drag a StatusStrip control from the Toolbox to the form, you will see an option to set various actions such as StatusStripPanel, ToolStripProgressBar, ToolStripDropDownButton, and ToolStripSplitButton. See Figure 1.

Figure 1. StatusStrip control.
You can set various Actions of StatusStrip control such as behavior, layout and appearance and also edit items from Actions dialog. See Figure 2.

Figure 2. Actions options of StatusStrip.
Edit Items link launches Item Collection Editor, where you can add Panel and ProgressBar controls to the StatusStrip control. After adding StatusStripPanel and ToolStripProgressBar controls, these controls can be managed as individual controls and you can set their properties from Item Collection Editor itself. See Figure 3.

Figure 3. Item Collection Editor.
After adding a panel and progress bar control, StatusStrip looks like Figure 4.

Figure 4. StatusStrip with a panel and progress bar.
Now new ProgressBar control is more powerful then ever. You can even set the foreground color of it, which used to be a pain in previous versions. I set green as forecolor of ProgressBar and set its Value property to 30. Now the new layout looks like Figure 5.

Figure 5. ProgressBar with green foreground.
Summary
Windows Forms 2.0 StatusStrip control replaces previous Windows Forms StatusBar control. The StatusStrip control is a more powerful control than StatusBar and provides many built-in features such as progress bar, status bar, dropdown button, and splitter. In this article, I discussed how to create and use StatusStrip control and its features using Visual Studio 2005 IDE.

Srinivasan SeshadriPosted Feb 27, 2010, 4:17 AM
Hi Mahesh, I am really thankful for your Windows Forms 2.0 StatusStrip Control, I believe this will add some more value to our current project. the control has really helped us to explore more in the Dynamic progress imaging solution in which we are currently involve with. we ae tryiong to manipulate live images in indicating a progress of an event recorded form a serial port instead of costly live feed video transmission we are simulating the status bar control with respect to the actual event occurence. Seshadri XLOG Chennai
CarleditedPosted Apr 13, 2006, 4:08 AMEdited Dec 27, 2006, 5:23 PM
I'm trying to dock the progress bar in the new toolstrip to the right hand corner. Any ideas how to do this, I couldn't find any property to set that worked as I expected?
Le Phuc Toan Phuc ToanPosted Nov 22, 2005, 6:36 AM
for example:using System.Data.ADO but I don't find "ADO" from my programming Please, Show me ? I want used to library and download it where ? How ? /..... Please, help me . I 'm a studient poor , because I have no any a books , Now, i want used to it , please, help me .
Bhasker DasPosted Nov 15, 2005, 6:48 PM
Good to know about this control.