In Winforms, why is there no databound event on combobox as there is in ASP.NET dropdown?
Is there any way to mimic the event?
In Winforms, why is there no databound event on combobox as there is in
Share
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.
Because there is a page-cycle in ASP.NET, there is a DataBound event for data-bound controls to notify the control’s server-side code that any data binding logic written for the control has completed. The event is used to format data-bound content or to initiate data binding in other controls that depend on values from the current control’s content.
Since Winforms doesn’t have to deal with a similar page cycle, no
DataBoundevent is necessary.