Listening to Events in Main Form from Another Form in C#
问题 I have an application that has a main form and uses an event handler to process incoming data and reflect the changes in various controls on the main form. This works fine. I also have another form in the application. There can be multiple instances of this second form running at any given time. What I'd like to do is have each instance of this second form listen to the event handler in the main form and update controls on its instance of the second form. How would I do this? Here's some