“财产'路径'没有价值”

时间:2009-01-22 16:20:22

标签: wpf data-binding datacontext

我正在使用以下xaml来填充dataContext:

DataContext="{Binding RelativeSource={RelativeSource TemplatedParent}}"

应用程序运行正常,但Cider抱怨我必须设置Path属性。 我对整个对象感兴趣,但不是特定属性。

我希望有办法让设计师支持!!

2 个答案:

答案 0 :(得分:3)

在这里看看2.3.8.7节(你需要向下滚动一下):

Visual Studio 2008 Service Pack 1 (SP1) Readme

尝试将代码更改为

DataContext="{Binding RelativeSource={RelativeSource TemplatedParent},Path=.}"

答案 1 :(得分:0)

谢谢,这正是我需要让我的RD工作,修复来自:

CommandTarget="{Binding RelativeSource={RelativeSource TemplatedParent}}"

为:

CommandTarget="{Binding RelativeSource={RelativeSource TemplatedParent},Path=.}"