如何让文本适合 WPF 中的文本块

发布于 2024-08-13 04:09:06 字数 127 浏览 3 评论 0原文

我有必须在 TextBlock 中显示的字符串,我的 TextBlock 有一些固定的大小,如果字符串不能在 TextBlock 中显示,我需要以这种方式显示文本,那么我必须在下一个 TextBlock 中拆分字符串,我怎样才能做到这一点。

I have string which i have to display in TextBlock, my TextBlock have some fixed size, i need display the text in such manner if string cannot fit in TextBlock, then i have to split the string in next TextBlock, how can i do this same.

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

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

发布评论

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

评论(2

寒冷纷飞旳雪 2024-08-20 04:09:06

为什么不尝试使用该 TextBlockTextWrapping 属性?

XAML:

<TextBlock TextWrapping="Wrap" Text="very very very long text" Width="30"/>

C#:

myTextBlock.TextWrapping = TextWrapping.Wrap;

Why don't you try using the TextWrapping property of that TextBlock?

XAML:

<TextBlock TextWrapping="Wrap" Text="very very very long text" Width="30"/>

C#:

myTextBlock.TextWrapping = TextWrapping.Wrap;
冷︶言冷语的世界 2024-08-20 04:09:06

如果您不想换行,那么水平/垂直滚动条是您可能想要探索的另一个选项。阅读这个问题,我认为文字环绕可能更合适(听起来不像你想隐藏任何东西),但选项总是不错的。

<ScrollViewer Height="30">
    <TextBlock Width="30" TextWrapping="Wrap">HElooooooooooooooooooooooooooooooooooooo</TextBlock>
</ScrollViewer>

编辑:结合自动换行和滚动查看器。

If you don't want wrapping, then slapping on a horizontal/vertical scrollbar is another option that you may want to explore. Reading the question I think textwrapping might be more appropriate (doesn't sound like you want to hide anything), but options are always nice.

<ScrollViewer Height="30">
    <TextBlock Width="30" TextWrapping="Wrap">HElooooooooooooooooooooooooooooooooooooo</TextBlock>
</ScrollViewer>

EDIT: Combines a word wrap and a scrollviewer.

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