富文本框的居中部分
所以我想将选定的文本放在富文本框中居中,但是当我使用此代码时,它也会将所有文本居中。
public static void ChangeSelectedTextAlignment(RichTextBox control)
{
control.SelectionAlignment = HorizontalAlignment.Center;
}
我该怎么做,只有选定的文本居中。就像单词等
So I wanna center the selected text in a richtextbox, but when i use this code it centers all the text after aswell.
public static void ChangeSelectedTextAlignment(RichTextBox control)
{
control.SelectionAlignment = HorizontalAlignment.Center;
}
How can I do so it is only the selected text which is centered. Just like word etc
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对齐属性不适用于选择。它按段落工作,如果尚未选择段落,则会出现光标。
请参阅:http://msdn.microsoft.com /en-us/library/system.windows.forms.richtextbox.selectionalignment.aspx
The alignment property doesn't work selection wise. It works paragraph wise, where the cursor appears in case a paragraph is not already selected.
Refer: http://msdn.microsoft.com/en-us/library/system.windows.forms.richtextbox.selectionalignment.aspx