I have a form which shows information about variables of the programm. So know I want to update the form when any of the variables changed. Is there any way to trigger an event or something like that?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
There is no such ability, unless you code it yourself or use some super-advanced-code-instrumentation tool. I suggest that you use properties instead of fields (unless you actually mean local variables?) and implement the |
|||
|
|
|
well there are many ways but what i use is observable collectionchanged event so wheneever the event is triggered it will do its operation like below...
} and for subscription..
|
|||
|
|

