У меня есть DataTable Dt
как ItemsSource
для моей DataGrid, и мне было интересно, есть ли способ привязать значение ячейки из N-го столбца к каждому DataGridRow.Header
?
<DataGrid ItemsSource="{Binding Dt}">
<DataGrid.RowStyle>
<Style TargetType="DataGridRow" BasedOn="{StaticResource {x:Type DataGridRow}}">
<!-- how to bind value from Dt Nth column?-->
<Setter Property="Header" Value="{Binding} "/>
</Style>
</DataGrid.RowStyle>
</DataGrid>
В настоящее времямой вывод выглядит так: