Tom Smykowski
Tom Smykowski

Reputation: 26089

Handle DataTable.DataRow cell change event

I have a DataTable that has several DataColumns and DataRow. Now i would like to handle an event when cell of this DataRow is changed. How to do this in c#?

Upvotes: 5

Views: 7732

Answers (1)

Zack
Zack

Reputation: 1231

It looks as though the DataTable.ColumnChanged event will do what you want

http://msdn.microsoft.com/en-us/library/system.data.datatable.columnchanged.aspx

Upvotes: 9

Related Questions