我的WPF数据网格目前填充了数据。
当数据网格处于完整行选择模式时,我想返回用户单击的单元格的单元格值。
目前我能够返回用户选择的单元格的行和列,但我不知道如何返回实际的单元格值。
这是我的VB代码。
Private Sub WaterfallDataGrid_SelectedCellsChanged(sender As Object, e As SelectedCellsChangedEventArgs) Handles WaterfallDataGrid.SelectedCellsChanged
'return the column of the cell of the datagrid
textBox1.Text = WaterfallDataGrid.CurrentCell.Column.DisplayIndex
'return the row of the cell of the datagrid
textBox2.Text = WaterfallDataGrid.Items.IndexOf(WaterfallDataGrid.CurrentItem)
'how do i return the value of the cell itself?
'textBox3.Text = ??
End Sub