WPF 多行 TextBlock 中心对齐问题

发布于 2024-10-11 00:34:01 字数 194 浏览 3 评论 0原文

我遇到了多行文本块的问题,它没有正确居中对齐

文本就像

abcde\nabc

这样出来

  abcde
  abc

我想要的是

  abcde
   abc

这似乎是一件简单的事情,我本以为文本块会像这样自动居中对齐,但它似乎没有。

I'm having an issue with multiline text blocks where it is not center aligning properly

The text is coming like

abcde\nabc

This comes out

  abcde
  abc

What I want is

  abcde
   abc

This seems a simple thing and I would have thought that the textblock would center align like that automatically but it does not seem to.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

木森分化 2024-10-18 00:34:01

尝试使用 TextAlignment 属性而不是 Horizo​​ntalAlignment。第一个是 TextBlock 中文本的对齐方式,第二个是 TextBlock 在父容器中的对齐方式。

Try the TextAlignment property instead of HorizontalAlignment. First one is the alignment of text in the TextBlock, second the alignment of the TextBlock in the parent container.

离鸿 2024-10-18 00:34:01

TextBlock.TextAlignment 应该做你想做的正在要求。

TextBlock.TextAlignment should do what you're asking for.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文