C#表单文本对齐不起作用

时间:2015-11-12 03:20:39

标签: c#

我在设计中创造了这个标签。 label TextAlign = MiddleCenter; label AutoSize = false;

它在设计上看起来不错,但是当我运行它时总是对齐左。不知道发生了什么!

        // load user image
        picCerImage.Image = Image.FromFile(Global.avatarPath);
        // load user fullname;
        lbeCerFullName.Text = Global.userFullName;

此代码来自FormLoad事件,这是我运行时的图片: enter image description here

抱歉我的英文!

3 个答案:

答案 0 :(得分:0)

我认为这可以解决这个问题:

  1. TextAlign 设置为 TopRight
  2. 主播 设置为 上下左侧。

答案 1 :(得分:0)

OK!我在Martheen的帮助下找到了这个问题。在加载之前修剪字符串! :)

答案 2 :(得分:-1)

您可以随时查找像您这样的问题的其他答案,例如How do I align my text in a label to the right side?

无论如何,也许这会奏效:

  1. 调整标签尺寸,使其大于文字。
  2. 将标签自动调整大小属性设置为 False
  3. 根据您的选择,将标签 TextAlign 设置为 TopRight MiddleRight BottomRight
  4. 我希望这适合你。祝你好运!