Hello,
I am very familiar with the DataGridView control the .NET Framework provides. I would like to use your GridView control, but I need to know how to reproduce the code below using your GridView for WinForms control:
string x = this.DataGridView.SelectedRows[0].Cells[0].Value.ToString();
I was trying to get there using the following approach:
this.dataGrid_PatientList.MasterGridViewInfo.Rows[0]...
Unfortunately, I'm not sure where to go from here or if it's even possible to achieve the results I am looking for.
Thank you in advance, your help is much appreciated.
Andrew