2
Answers

I have a WPF DataGrid in which I would like to be able to read the contents of a particular cell

Hi All,
Please Answer these Question Quickly?

I have a WPF DataGrid in which I would like to be able to read the contents of a particular cell.

At the moment I can only get the whole contents of the grid but only concatenated and I have no way to separate the data logically so I can split it into columns. It's like this:

Row1: Column1Column2Column3Column4
Row2: Column1Column2Column3Column4
Row3: Column1Column2Column3Column4

Is there a way to get the contents of a cell in this grid?
Answers (2)
0
Manish Dwivedi

Manish Dwivedi

NA 8.3k 1.2m 16y
Hi Jignesh,
use this for doing that.
string str = "welcome";
string newString = str.Substring(1, str.Length - 1) + str.Substring(0, 1);