---
title: "StatusStrip Control in C#.Net"  
description: "StatusStrip control is a powerful StatusBar control. StatusStrip provides ProgressBar, DropdownButton, SplitButton, and Label features, you can add a"  
author: "Pushpendra Singh"  
published: 2011-01-24  
updated: 2020-01-31  
canonical: https://www.mindstick.com/articles/413/statusstrip-control-in-c-sharp-dot-net  
category: "c#"  
tags: ["c#"]  
reading_time: 1 minute  

---

# StatusStrip Control in C#.Net

StatusStrip control is a powerful StatusBar control. [**StatusStrip provides ProgressBar**](https://www.mindstick.com/Articles/317/statusstrip-control-in-vb-dot-net), DropdownButton, SplitButton, and Label [features](https://yourviews.mindstick.com/view/86404/best-5-rolls-royce-cars-to-buy-with-features-and-price), you can add a [progress bar](https://www.mindstick.com/articles/12747/android-progress-bar), a drop-down button, a SplitButton, or a [label control](https://www.mindstick.com/articles/301/a-label-control-in-vb-dot-net) to the StatusStrip itself.\

## How to use StatusStrip Control

[Drag and drop](https://www.mindstick.com/forum/454/how-to-drag-and-drop-multiple-image-from-one-canvas-to-onther-canvas-in-html5) StatusStrip control from the toolbox on the [window Form](https://www.mindstick.com/forum/527/how-to-pass-datagridview-s-cells-value-to-another-window-form).

![StatusStrip Control in C#.Net](https://www.mindstick.com/mindstickarticle/88f08abd-5695-4d5b-ac09-f38bdfaafb52/images/997e97ad-0152-4cb1-b8d1-985b678a56f8.png)

![StatusStrip Control in C#.Net](https://www.mindstick.com/mindstickarticle/88f08abd-5695-4d5b-ac09-f38bdfaafb52/images/3cec04ef-e5de-4732-bdb2-01c758cc83d0.png)

![StatusStrip Control in C#.Net](https://www.mindstick.com/mindstickarticle/88f08abd-5695-4d5b-ac09-f38bdfaafb52/images/c3658437-cc7d-4f57-addf-26bdfb3cac4d.png)

Select-control which you want to show in StatusStrip.

Here progress bar is added. By [default](https://www.mindstick.com/interview/12771/what-is-the-importance-of-default-resources) [maximum value](https://answers.mindstick.com/qa/38240/according-to-recent-rbi-directives-to-banks-how-many-pieces-of-soiled-currency-notes-with-a-maximum-value-of-rs-5-000-can-be-exchanged-at-banks-free-of-charge) of ProgressBar is 100 and the minimum value is 0.

![StatusStrip Control in C#.Net](https://www.mindstick.com/mindstickarticle/88f08abd-5695-4d5b-ac09-f38bdfaafb52/images/cd4a8d84-7391-47b7-b3ed-146551bc145d.png)

## Code:

```
private void frmStatusStrip_Load(object sender,  EventArgs e){      while (toolStripProgressBar1.Value < 100)       {  // Progresbar value will increase 5 untill its value will not reach to 100.                toolStripProgressBar1.Value += 5;       }}
```

Progressbar will show when the [application](https://www.mindstick.com/articles/12824/calculator-application-in-android) run.

![StatusStrip Control in C#.Net](https://www.mindstick.com/mindstickarticle/88f08abd-5695-4d5b-ac09-f38bdfaafb52/images/175794cd-fcdc-44c8-bc44-f97874285e1d.png)

![StatusStrip Control in C#.Net](https://www.mindstick.com/mindstickarticle/88f08abd-5695-4d5b-ac09-f38bdfaafb52/images/33ee3b46-508b-4816-86f5-8b0b020bae3d.png)

---

Original Source: https://www.mindstick.com/articles/413/statusstrip-control-in-c-sharp-dot-net

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
