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?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There is not event that is raised when the data-binding starts but you can use
RowsAddedDataBindingComplete: Occurs after a data-binding operation has finished.more info at
http://msdn.microsoft.com/en-us/library/system.windows.forms.datagridview_events.aspx