使用什么绑定(bind)将 DataGridTemplateColumn 的单元格模板中定义的元素绑定(bind)到该单元格的 DataGridRow 的绑定(bind)数据项?
例如,假设 DataGrid Items 是具有 Name 属性的对象。下面的代码需要什么绑定(bind)才能将 TextBlock Text 绑定(bind)到父行表示的数据项的“Name”属性?
(是的,在这个例子中我可以只使用 DataGridTextColumn,但我只是为了简化。)
<DataGrid ItemsSource="{Binding Items}">
<DataGrid.Columns>
<DataGridTemplateColumn Header="Name">
<DataGridTemplateColumn.CellTemplate>
<DataTemplate>
<TextBlock Text="{Binding ???}"/>
</DataTemplate>
</DataGridTemplateColumn.CellTemplate>
</DataGridTemplateColumn>
</DataGrid.Columns>
</DataGrid>
最佳答案
您不需要任何特殊类型的绑定(bind) - TextBlock 从行(设置为绑定(bind)项目)继承数据上下文。
所以你可以这样做:
<TextBlock Text="{Binding Name}" />
要查看数据上下文实际上是由 TextBlock 继承的,您可以设置一个不同的数据上下文,该数据上下文更接近控件层次结构中的 TextBlock。 TextBlock 现在将改用该数据上下文。
在此示例中,StackPanel 的名称将显示在 TextBlock 中,而不是 DataGrid 上绑定(bind)行对象上的名称:
<DataTemplate>
<StackPanel x:Name="panel1" DataContext="{Binding RelativeSource={RelativeSource Self}}">
<!-- Binds to Name on the Stackpanel -->
<TextBlock Text="{Binding Name}" />
<!-- Binds to Name on object bound to DataGridRow -->
<TextBlock Text="{Binding DataContext.Name,
RelativeSource={RelativeSource Mode=FindAncestor, AncestorType=DataGridRow}}" />
</StackPanel>
</DataTemplate>
关于c# - 如何从 xaml 中该行内的模板化单元绑定(bind)到 DataGridRow 项目?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13201286/