当使用固定高度时,如何使WPF Textblock
控制堆栈的文本从下到上,而不是从上到下?这是我的意思的一个例子:
Textblock
一行
*********** My Text ***
*********** instead of ***********
My Text *** ***********
Textblock
有两行
*********** My Text is
My Text is instead of bigger ****
bigger **** ***********
有没有办法实现这个目标?
答案 0 :(得分:1)
如何简单地将VerticalAlignment
属性设置为Bottom
?如果您的实际文字周围有某些内容,则可以将TextBlock
放在Grid
或Border
中并设置此高度:
<Border Background="Yellow" Height="300">
<TextBlock VerticalAlignment="Bottom">one line at the bottom</TextBlock>
</Border>