enter image description here

As I move splitter to left, it hide my text(as in above image). I want to auto adjust Label Text as I move splitter.

update me!

link|improve this question

69% accept rate
So you are looking to refresh the label text when the splitter is moving? – NominSim Jan 10 at 15:35
where is hidden text? on left? – Reniuz Jan 10 at 15:37
@reniuz hidden text is on right side – Shahid Ghafoor Jan 10 at 15:54
feedback

1 Answer

You need to set the lb.Anchor property, info here

it should be something like

lb.Anchor = AnchorStyles.Left | AnchorStyles.Right | AnchorStyles.Top | AnchorStyles.Bottom;

or similar depending where you want it to anchor

link|improve this answer
Dear not working .....! – Shahid Ghafoor Jan 10 at 16:12
if your problem is lack of word-wrapping this might help you: stackoverflow.com/questions/1204804/…, if not use another control instead of a label (as a disabled richtexteditor) – Sebastian Piu Jan 10 at 16:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.