status bar
C#
5
Posts
2
Posters
0
Views
1
Watching
-
how to make multiline at statusbar at c#
-
how to make multiline at statusbar at c#
-
I assume you mean the StatusStrip control? If so, alter the LayoutStyle property to Flow.
thanks for the reply and valuable solution... now one more question.. i have two lines.. second one is only a word.. and i want that in center of the first line.. how to make that.. please reply
-
thanks for the reply and valuable solution... now one more question.. i have two lines.. second one is only a word.. and i want that in center of the first line.. how to make that.. please reply
-
Use VerticalStackWithOverflow in the same property. It will stack every item, 1 to a line, vetically. If that's not what you need, you're gonna have to create your own control.
thanks..