如何在 Silverlight RichTextBox 中保留选项卡?
我已经覆盖了按键处理事件,并在用户按下 RichTextBox 的 Tab 键时插入选项卡。
当我从该 RichTextBox 保存 XAML 并重新加载它时,所有选项卡现在都是空格。
有谁知道我可以做什么来让 RichTextBox 显示选项卡?
I've overridden the key-handling events and am inserting tabs when a user presses the tab key for a RichTextBox.
When I save the XAML from that RichTextBox and reload it, all of the tabs are now spaces.
Does anyone know what I can do to get the RichTextBox to display tabs?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我通过临时放置一个占位符解决了这个问题。
我使用占位符临时替换所有制表符,然后一旦它们位于 RichTextBox 中,我就用制表符替换所有占位符。
I got around this issue by putting a placeholder in temporarily.
I used the placeholder to temporarily replace all of the tab characters and then once they were in the RichTextBox I replaced all of the placeholders with tabs.