如何在 WPF RichTextBox 中设置选项卡大小
WPF RichTextBox 可以设置为接受其输入中的选项卡。 它将结果呈现为 4 个字符的缩进。 我想改变这个尺寸。 如何更改默认值?
The WPF RichTextBox can be set to accept tabs in its input. It renders the result as a 4 character indent. I'd like to change that size. How can I change the default?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
目前尚不支持此功能,但他们正在考虑在未来发布。 令人沮丧的答案——我知道!
来源: http:// Social.msdn.microsoft.com/Forums/en-US/wpf/thread/c610a492-cae8-444a-a657-05559da61fe3/(LesterLobo 的回答 - MSFT)
There is currently no support for this, but they are considering it for future release. Frustrating answer - I know!
Source: http://social.msdn.microsoft.com/Forums/en-US/wpf/thread/c610a492-cae8-444a-a657-05559da61fe3/ (Answer from LesterLobo - MSFT)
阅读有关 TabStops 的 sams 链接,您的问题的答案似乎更容易解决。 只需将此样式添加到资源中的某个位置即可:
不幸的是,当您从文档中获取文本时,它会忽略选项卡。 我正在考虑编写自己的流文档文本编写器,这样我可以获得更好的输出。 另一个问题是附加文本不会每行生成一个段落,也不会为 '\t' 生成正确的缩进。 所以我可能也必须创建相反的。 非常令人沮丧。 FlowDocument 似乎并不是真正为使用而设计的。
Reading sams link about TabStops it seems that the answer to your question is a bit easier to solve. Just add this Style somewhere in your resources:
Unfortunately when you get the text out of the document it omits the tabs. I'm thinking of writing my own flowdocument text writer so I can get better output. Another problem is that appending text does not generate a paragraph per line or proper indents for '\t's. So I might have to create the reverse as well. Very frustrating. The FlowDocument seems like it was not really designed to be used.