如何在 WPF RichTextBox 中设置选项卡大小

发布于 2024-07-11 16:52:43 字数 79 浏览 8 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

舞袖。长 2024-07-18 16:52:43

目前尚不支持此功能,但他们正在考虑在未来发布。 令人沮丧的答案——我知道!

来源: 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)

愁杀 2024-07-18 16:52:43

阅读有关 TabStops 的 sams 链接,您的问题的答案似乎更容易解决。 只需将此样式添加到资源中的某个位置即可:

<Style TargetType="Paragraph">
  <!-- 20.0 is default. It's pixels not characters though -->
  <Setter Property="TextIndent" Value="20" /> 
</Style>

不幸的是,当您从文档中获取文本时,它会忽略选项卡。 我正在考虑编写自己的流文档文本编写器,这样我可以获得更好的输出。 另一个问题是附加文本不会每行生成一个段落,也不会为 '\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:

<Style TargetType="Paragraph">
  <!-- 20.0 is default. It's pixels not characters though -->
  <Setter Property="TextIndent" Value="20" /> 
</Style>

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文