我想将TextBox.Text绑定到我的对象IDataErrorInfo.Error属性,该属性返回错误摘要。我的对象是DataContext。 现在我有一个这样的文本框:
<TextBox xmlns:sys="clr-namespace:System.ComponentModel;assembly=System" Text="{Binding Path=(sys:IDataErrorInfo.Error), Mode=OneWay}" />
并且所有工作在运行时都正常但在设计时Visual Studio 2010显示错误:在“绑定”上抛出了InvalidOperationException:对象'null'不能用作PropertyPath的访问器参数。访问者必须是DependencyProperty,PropertyInfo或PropertyDescriptor。 现在有了这个错误(在黄色栏中)我不能使用属性工具箱来编辑我的窗口。 有人可以帮我解决这个错误吗?
答案 0 :(得分:0)
你能试试吗?
Text="{Binding Path=Error, Mode=OneWay}"