标签: c# wpf xaml data-binding mvvm
我有一个嵌套在RichTextBox中的TextBlock和DataTemplate。我正在尝试将它们绑定到动态内容,其中包括超链接和图像(因此我无法使用Text属性)。
RichTextBox
TextBlock
DataTemplate
Text
我如何将这些属性绑定到内容?
答案 0 :(得分:0)
您无法直接绑定到非DependencyProperty的属性。
DependencyProperty
一种解决方法是继承RichTextBox并添加DependencyProperty。您可以通过设置RichTextBox.Document。
RichTextBox.Document