正如标题所说,我在使用DependencyProperty数据绑定时遇到问题。我有一个名为HTMLBox的类:
public class HTMLBox : RichTextBox
{
public static readonly DependencyProperty TextProperty =
DependencyProperty.Register("Text", typeof(string), typeof(HTMLBox));
public string Text
{
get
{
return GetValue(TextProperty) as string;
}
set
{
Console.WriteLine("Setter...");
SetValue(TextProperty, value);
}
}
public HTMLBox()
{
// Create a FlowDocument
FlowDocument mcFlowDoc = new FlowDocument();
// Create a paragraph with text
Paragraph para = new Paragraph();
para.Inlines.Add(new Bold(new Run(Text)));
// Add the paragraph to blocks of paragraph
mcFlowDoc.Blocks.Add(para);
this.Document = mcFlowDoc;
}
}
我在构造函数中读取Text属性,因此当字符串绑定到属性时,它应显示为文本。但即使我将一些数据绑定到xaml中的Text属性,我甚至看不到“Setter ...” - 在设置Text属性时应该显示的消息。
<local:HTMLBox Text="{Binding Text}"
Width="{Binding Width}"
AcceptsReturn="True"
Height="{Binding Height}" />
如果我将HTMLBox更改为TextBox,文本会正确显示,所以错误可能是我的HTMLBox类中的错误。我做错了什么?
答案 0 :(得分:4)
你有几个问题在这里:
DependencyProperty.Register
注册依赖项属性时通过更改事件处理程序执行此操作。Text
将始终是构造函数中的默认值。同样,(1)的类似解决方案,当您的Text
属性更改时,重建/更新您的UI。