Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的 WPF 应用程序中,我有一个文本框,我应该在其中插入一个大文本,然后在预览页面中显示该大文本。我关于文本框的问题是:
您可以使用 Textbox.TextWrapping 属性。将其设置为 TextWrapping.Wrap。
textBox1.TextWrapping = TextWrapping.Wrap;
我建议使用 RichTextBox。它的 Document 属性是一个 FlowDocument,您还可以在其中添加段落。