Possible Duplicate:
Select DataGridCell from DataGrid
I have a datagrid in WPF with some columns and rows. when I click on a row I want to get the first column of the selected row. How can I do it? can I use LINQ for that? thanx
I have a datagrid in WPF with some columns and rows. when I click on a row I want to get the first column of the selected row. How can I do it? can I use LINQ for that? thanx |
|||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
You can simply use this extension method-
and you can get a cell of a DataGrid by an existing row and column id(0 in your case):
Check this link for details - Get WPF DataGrid row and cell |
|||
|
|
This way you can get FrameworkElement that is a content of a DataGridCell and a DataGridCell itself. Note that if DataGrid has To get the actual value from a data source, for a specific DataGridCell, is a little more complicated. There is no general way to do this, because DataGridCell can be constituted from multiple values (properties) from the backing data source, so you are going to need to handle this for a specific DataGridColumn. |
||||
|
|