如何在DataGridRow上绑定对象

时间:2014-02-12 02:43:48

标签: wpf xaml wpfdatagrid

在我的DataGrid中,如果我有以下绑定,我得到User_ID没问题。每行都是用户记录。如何更改此绑定实际用户对象?所以我可以把它发送到我的转换器。

{Binding Path=DataContext.User_ID, RelativeSource={RelativeSource AncestorType={x:Type DataGridRow}}}"

2 个答案:

答案 0 :(得分:1)

尝试从绑定路径中删除.User_ID

{Binding Path=DataContext, RelativeSource={RelativeSource AncestorType={x:Type DataGridRow}}}"

答案 1 :(得分:0)

从绑定中删除“路径”,如下所示:

{Binding RelativeSource={RelativeSource AncestorType={x:Type DataGridRow}}}