Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
800
Add item to binding list not AfterRowInsert event
posted

I'm using a pretty simple WinGrid that is bound to a BindingList of custom objects.  When adding new items to the list, I'm not using the WinGrid to do so, because the objects need a bit of initialization (ie. there is no default constructor).  Instead, I am creating the object, initializing it and then adding it to the BindingList.  The WinGrid is picking up the new object and adding a new row for it, however I want the grid to make that new row active.  I thought that the AfterRowInsert event would be raised in this case and I could just set the active row here, but that event simply isn't being raised. Am I missing something here?  Is there some other event I can get when this happens?