Questions tagged [statusstrip]

Is a Windows control used to display information useful to end-users.

A StatusStrip control can contain other controls, like ToolStripProgressBar, ToolStripSplitButton, ToolStripDropDownButton and ToolStripStatusLabel. These other controls have different abilities and graphical representation.

71 questions
104
votes
8 answers

How do I right align controls in a StatusStrip?

I am trying to right align a control in a StatusStrip. How can I do that? I don't see a property to set on ToolStripItem controls that specifies their physical alignment on the parent StatusStrip. How do I get Messages drop down to be right aligned?…
Eric Schoonover
  • 47,184
  • 49
  • 157
  • 202
18
votes
4 answers

How do I reclaim the space from the "Grip"

I've got a StatusStrip with a single ToolStripStatusLabel, Spring=true and a background color for notifications. The problem is that there's an ugly gray square on the right side of the status strip. After fiddling for a while, I realized this is…
Clyde
  • 8,017
  • 11
  • 56
  • 87
16
votes
1 answer

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?
Brad Bruce
  • 7,638
  • 3
  • 39
  • 60
13
votes
3 answers

Docked multiline textbox is covered by StatusStrip

I am having a form in which I have multiple line textbox and status strip both docked to the bottom of the form. Textbox must be docked so it can be resizable while the whole form is resizable. The problem is that the status strip is covering the…
HelpNeeder
  • 6,383
  • 24
  • 91
  • 155
13
votes
5 answers

Using StatusStrip in C#

Consider System.Windows.Forms.StatusStrip. I have added a StatusStrip to my Windows Forms application, but I am having a few problems. I would like to have a label anchored at the left and a progressbar anchored on the right in the StatusStrip, but…
Brad
  • 20,302
  • 36
  • 84
  • 102
12
votes
1 answer

truncate ToolStripStatusLabel instead of hiding it

I have a StatusStrip control on a form. This control contains only one child control - it is ToolStripStatusLabel. When the text is too large, then nothing is displayed. I would prefer to display at least something instead of nothing. What should I…
Bogdan Verbenets
  • 25,686
  • 13
  • 66
  • 119
11
votes
3 answers

Can I embed a ComboBox and a simple Button into a StatusStrip in WinForms?

By default ComboBox and Button elements are not among those offered to add into a StatusStrip by WinForms designer (while DropDownButton and SplitButton are). Is there a way to add them there? As far as I've heard any control can be embedded there,…
Ivan
  • 63,011
  • 101
  • 250
  • 382
10
votes
2 answers

StatusStrip - Add a button without the dropdown arrow to the right of it

I know there is a ToolStripSplitButton... ... but is there any way to use that button object without the dropdown arrow to the right of it. Ending up with JUST an image that's a button?
Arvo Bowen
  • 4,524
  • 6
  • 51
  • 109
7
votes
1 answer

TableLayoutPanel and StatusTrip toolbar overlapping

I have a winforms vb.net app. In this winform I have placed two components: TableLayoutPanel StatusStrip toolbar I am trying to put StatusStrip toolbar at the bottom of the winforms and TableLayoutPanel to fit all the rest of the screen, so I set…
Willy
  • 9,848
  • 22
  • 141
  • 284
5
votes
1 answer

Can StatusStrip automatically change its height depending on its items' size?

I've got a statusstrip with a number of items. One of them is a ToolStripStatusLabel with Spring = True. When the text of the label is too long, one can't see it. Is it possible to make the statusstrip become higher and show whole text in multiline?
horgh
  • 17,918
  • 22
  • 68
  • 123
4
votes
2 answers

change the height of statusStrip

I have a simple windows form with a statusStrip in VS2010, and no matter what I tried, the height of statusStrip does not change, what is proper way of changing the height?? thanks
ikel
  • 1,790
  • 6
  • 31
  • 61
4
votes
2 answers

How to change mdi statusstrip label from a child form

I've been searching for a solution for couple of days now, but can't find a simple answer. I've tried a number of examples found on internet (delegates, properties, even breaking OOP making everything public) but none of these seem to work. Can…
Alex
  • 398
  • 1
  • 6
  • 18
4
votes
5 answers

Updating toolStripStatusLabel immediately

I have a WinForms program that has a button, a statusStrip, and a toolStripStatusLabel in that statusStrip. If I click the button and this runs: private void button1_Click(object sender, EventArgs e) { toolStripStatusLabel1.Text = "Test"; …
derekantrican
  • 1,891
  • 3
  • 27
  • 57
3
votes
2 answers

ToolStripStatusLabel displayed as black box

I use StatusStrip that contains ToolStripStatusLabel. OS - Windows 7, framework 2.0. Usually all displayed normal, but sometimes ToolStripStatusLabel looks like black box: I read that windows bug, but how I can fix it?
Nikolay
  • 587
  • 6
  • 20
2
votes
0 answers

Apply Right-To-Left to a tooltip on a WinForms StatusStrip

In my WinForms application, I'm currently populating a StatusStrip with multiple ToolStripStatusLabel controls: http://msdn.microsoft.com/en-us/library/system.windows.forms.toolstripstatuslabel.aspx The only tooltip property that exists is…
Maximus
  • 1,441
  • 14
  • 38
1
2 3 4 5