Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

like image 376
ikel Avatar asked Nov 21 '11 18:11

ikel


1 Answers

I just changed the StatusStrip size without problems...

  • Create a new Form.
  • Create a StatusStrip.
  • Set its property "Dock" to "None".
  • Set its property "Autosize" to "False".
  • Set its property "Size" with Height = 'the height you need' (I have put it to 100).
  • If you want, now you can Dock to "Bottom" again.
  • Add a ProgressBar: it will be 100 Height.

Let me know if this works for you

like image 131
Andrea Antonangeli Avatar answered Sep 17 '22 04:09

Andrea Antonangeli