Thanks you for the reply!
I read for this model and make a small project to test it. It's seem to work but I used static array in the base class of the forms. It's not very good idea, I think. Some other idea to avoid this.http://www.mediafire.com/?332q8qshaa00fyj
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.