user4227915
user4227915

Reputation:

What event in dataGridView triggers on every data loading?

I have some functions that changes the dataGridView's source.

What event can I bind to dataGridView in a way that for any changes in source triggers the event-function?

Or need I call a function in all other functions that load data to the source?

Upvotes: 0

Views: 113

Answers (1)

Chostakovitch
Chostakovitch

Reputation: 965

I suggest you use the event OnDataSourceChanged.

Upvotes: 1

Related Questions