What binding is used to bind an element defined in the cell template of a DataGridTemplateColumn to the bound data item of that cell's DataGridRow?
For example, assume the DataGrid Items are objects that have a Name property. What binding is required in the code below to bind the TextBlock Text to the "Name" property of the data item represented by the parent row?
(And yes, in the example I could just use DataGridTextColumn, but I'm just simplifying for example sake.)
<DataGrid ItemsSource="{Binding Items}">
<DataGrid.Columns>
<DataGridTemplateColumn Header="Name">
<DataGridTemplateColumn.CellTemplate>
<DataTemplate>
<TextBlock Text="{Binding ???}"/>
</DataTemplate>
</DataGridTemplateColumn.CellTemplate>
</DataGridTemplateColumn>
</DataGrid.Columns>
</DataGrid>