ToolStripStatusLabel too long

  • Thread starter Thread starter PiotrKolodziej
  • Start date Start date
P

PiotrKolodziej

Hi.
I have little problem here. Text in my ToolStripStatusLabel is longer than
Form width, such that this text is invisible till i make my form longer.
i would like to "cut" this text instead of making it invisible, such that
rest of the text would be visible when Form will be resized. Is there any
way in .net to do this?
Thanks
PK
 
PiotrKolodziej said:
Hi.
I have little problem here. Text in my ToolStripStatusLabel is longer than
Form width, such that this text is invisible till i make my form longer.
i would like to "cut" this text instead of making it invisible, such that
rest of the text would be visible when Form will be resized. Is there any
way in .net to do this?
Thanks
PK


How bout manually setting the text to something that is shorter? You could
do this on the resize and get the forms width and check the text width and
see if its longer and if it is you can "prune" it down.
 
Back
Top