Reputation: 265
I want to make a custom DataGridView, which can give the user a tip when it's loading data from dataSource.
I want to know, which event should I process to achieve this? In detail, which event is triggered at the start and end of data loading?
Upvotes: 0
Views: 809
Reputation: 26737
There is not event that is raised when the data-binding starts but you can use RowsAdded
DataBindingComplete
: Occurs after a data-binding operation has finished.
more info at
http://msdn.microsoft.com/en-us/library/system.windows.forms.datagridview_events.aspx
Upvotes: 2