Home › Forums › WinForms controls › Xceed Grid for WinForms › Binding an Unbound Column › Reply To: Binding an Unbound Column
You could get the index of the DataRow, and then use that to get the object from your collection.<pre>int index = e.DataRow.Index;
if (index >= 0 && index < myCollection.Count) {
Person myPerson = myCollection[index];
}</pre>
Imported from legacy forums. Posted by Tommy (had 183 views)