从Xaml绑定RichTextBox的文本
如何从xaml绑定RichTextArea的文本
How to Bind the text of RichTextArea from xaml
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何从xaml绑定RichTextArea的文本
How to Bind the text of RichTextArea from xaml
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(5)
他们在这里得到了更简单的答案:
Silverlight 4 RichTextBox 使用 DataContext 绑定数据
它就像一个魅力。
They've got the easier answer here:
Silverlight 4 RichTextBox Bind Data using DataContext
and it works like a charm.
这是我想出的解决方案。我创建了一个自定义 RichTextViewer 类并继承自 RichTextBox。
Here is the solution I came up with. I created a custom RichTextViewer class and inherited from RichTextBox.
您可以使用
InlineUIContainer
类(如果要在内联类型控件内部绑定 XAML 控件)You can use the
InlineUIContainer
class if you want to bind a XAML control inside of an inline typed control没有内置的方法可以做到这一点。您可以创建文本附加属性并绑定到它,就像讨论的 此处
There is no built in way to do that. You can create Text attached property and bind to it like discussed here
这是无法完成的,必须手动更新。文档不是 DependencyProperty。
This can't be done, you have to manually update it. Document is not a DependencyProperty.