I have a custom control that derives directly from CheckedListBox. If the CheckedListBox subscribes to its own event (ItemCheck for example) and the user of the control also subscribes to it, does the control's event trigger first before the user's?
I read on MSDN that if multiple subscribers subscribe to an event, they are triggered synchronously, but I wasn't sure if that applied in this situation or not. I understand if there are multiple handlers for one event, but not sure about this one, if the event handlers occured synchronously on the control first and THEN the user's events are triggered synchronously.
Any ideas? I've tested it (kinda) with messageboxes and they always seem to trigger in the same order (but that doesn't mean it always will) with the control's event triggering first, and the form's event handlers triggering afterwards.