如何在 WPF RichTextBox 中设置纯文本格式
我使用 WPF 开发了一个小型聊天客户端。在每个聊天窗口中,它包含一个用于显示以前的聊天对话的富文本框和一个带有发送按钮的文本框用于键入聊天消息。 我想格式化 Richtextbox 中的显示文本,如下所示。
user1: 聊天消息在此处
目前,我使用 AppendText 函数将聊天对话附加到 Richtextbox 中。我的代码看起来像这样,
this.ShowChatConversationsBox.AppendText(from+": "+text);
但是这样,我找不到格式化文本的方法,如上所示。有什么办法可以做到这一点吗?或任何替代方法?
谢谢
I have developed a small chat client using WPF. In each chat window, it contains a richtextbox to display previous chat conversations and a textbox with send button to type a chat message.
I want to format the display text in the richtextbox as shown below.
user1: chat message goes here
For the time being, I use AppendText function to append chat conversation to the richtextbox. my code looks like this,
this.ShowChatConversationsBox.AppendText(from+": "+text);
But in this way, i couldn't find a method to format the text as show above. Is there any way to do this? or any alternative methods?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以直接与 FlowDocument 交互来添加富文本,而不是与 RichTextBox 交互。将 RichTextBox 上的文档设置为包含段落的 FlowDocument,并添加 内联对象,例如运行 或粗体到该段落。您可以通过设置段落或内联属性来设置文本格式。例如:
Instead of interacting with the RichTextBox, you can interact with the FlowDocument directly to add rich text. Set the Document on the RichTextBox to a FlowDocument containing a Paragraph, and add Inline objects such as Run or Bold to the Paragraph. You can format the text by setting properties on the Paragraph or on the Inlines. For example: