Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I remove the resize gripper image from a StatusStrip control in C#?

I need to show a StatusStrip control docked top instead of bottom.

User requirement. Long story.

How do I get the StatusStrip to display without the dots in the right corner?

like image 753
Brad Bruce Avatar asked Mar 17 '10 17:03

Brad Bruce


People also ask

What is StatusStrip?

A StatusStrip control displays information about an object being viewed on a Form, the object's components, or contextual information that relates to that object's operation within your application. Typically, a StatusStrip control consists of ToolStripStatusLabel objects, each of which displays text, an icon, or both.

What is Status bar in c#?

A StatusBar control is a combination of StatusBar panels where each panel can be used to display different information. For example, one panel can display current application status and other can display date and other information and so on. A typical StatusBar sits at the bottom of a form.

When the StatusStrip control is been dragged on the form from the toolbox which of the following options are been shown?

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.


1 Answers

Set the SizingGrip attribute to false:

StatusStrip.SizingGrip = false;
like image 82
Matthew Jones Avatar answered Nov 15 '22 18:11

Matthew Jones