I want to define message, which a set of forms to listen for it, and each of them to raise.
For example:
BaseForm:Form{
publuc event EventHandler DataChanged;
protected virtual void OnDataChanged
{
if(DataChanged != null)
DataChanged(this, new EventHandler());
}
ChildForm:BaseForm
listen for...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.