Label grow from right to left

前端 未结 6 576
逝去的感伤
逝去的感伤 2021-02-03 17:00

I have a label on my form which is on the right of the form. This label loads a dynamic text.

Sometimes the text that it loads is too long and the text crosses the borde

6条回答
  •  攒了一身酷
    2021-02-03 17:33

    You can use the TableLayoutPanel or other compatible container control, but instead setting RightToLeft property for the container set Dock="Right" for the label

    Setting RightToLeft property does not always give the expected results as for some string formats the string is modified changing the order of the words.

提交回复
热议问题