When you update DataGridView.DataSource using the assignment operator, the DataSourceChanged event handler is called. You can't overload assignment op in C#, so how does the event handler get called internally?
public void foo(){
this.dataGridView.DataSourceChanged += new EventHandler(bar);
this.dataGridView.DataSource = dt;
}
//this handler is called after datasource changes
private void bar(object sender, EventArgs e) {}