Hi,
The events are in the DGV control itself:
this.groupsDataGridView.CellEndEdit += new
DataGridViewCellEventHandler( groupsDataGridView_CellEndEdit );
this.groupsDataGridView.CellValueChanged += new
DataGridViewCellEventHandler( groupsDataGridView_CellValueChanged );
void groupsDataGridView_CellValueChanged( object sender, DataGridViewCellEventArgs e )
{
if ( this.groupsDataGridView.Columns[ e.ColumnIndex ] == this.colCheckbox ) {
MessageBox.Show( "Value Changed" );
}
}
void groupsDataGridView_CellEndEdit( object sender, DataGridViewCellEventArgs e )
{
if ( this.groupsDataGridView.Columns[e.ColumnIndex] == this.colCheckbox) {
MessageBox.Show( "End Edit" );
}
}
Regards,
Charles