I have created 1 enum when I use it as a property for a custom control, I want to fire a event for change of the enum property.Please Help.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Make use of the setter to call a function or to call an event delegate.
See more here http://msdn.microsoft.com/en-us/library/ms743695.aspx which is done using the INotifyPropertyChanged |
|||
|
|
|
A psudocode define your delegate
define event
and in your property
|
||||
|