我有一些绑定警告我无法解决:
System.Windows.Data信息:10:无法使用。检索值 绑定并且不存在有效的回退值;使用默认值。 BindingExpression:路径= AddNewObjectCommand;的DataItem = NULL;目标 元素是' ButtonWithIcon' (名称=' UC&#39);目标属性是 ' ButtonCommand' (键入' ICommand')
我的理解是我应该使用后备值。这适用于简单的对象类型,但是不知道如何处理复杂对象(如列表)或者在这种情况下命令。
这是我尝试过的,没有运气:
<controls:ButtonWithIcon ButtonCommand="{Binding CancelCommand, FallbackValue={x:Null}}" />
你对此有什么想法吗?
提前谢谢!