gpt4 book ai didi

wpf - 更改 WPF 中富文本框的对齐方式

转载 作者:行者123 更新时间:2023-12-04 14:09:15 24 4
gpt4 key购买 nike

如何更改 RichText 框的垂直和水平对齐方式。我已经尝试了所有 api 的水平对齐和垂直对齐。但没有任何效果。

最佳答案

此属性返回当前对齐方式。设置此属性会调整 RichTextBox 的内容以反射(reflect)指定的对齐方式。

<!--Create a RichTextBox and a Button.-->
<StackPanel>
<RichTextBox x:Name="MyRTB" Height="100" Width="400" />
<Button x:Name="MyButton1" Content="Right-Align" Height="30" Width="100" Click="button_Click" />
</StackPanel>

单击按钮右对齐 RichTextBox 中的内容。
private void button_Click(object sender, RoutedEventArgs e)
{
BlockCollection MyBC = MyRTB.Blocks;
foreach (Block b in MyBC)
b.TextAlignment = TextAlignment.Right;
}

关于wpf - 更改 WPF 中富文本框的对齐方式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21574832/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com