How do I pass a row information from my class to a grid in the windows form of my application? The row information changes every now and then and I need to pass this updated information to the form
|
feedback
|
|
You can expose an event in your class that the form class can subscribe to. When that event is triggered the form can update the UI as needed. For example:
You could actually just pass the TextBox.TextChanged event right no through in this example. | |||||
|
feedback
|