Help Regarding implementing Delegate

  • Thread starter Thread starter sanjeeva
  • Start date Start date
S

sanjeeva

Hi all,
I need some help in implementing a logic in an application with
delegates. The program flow is like this.

There exists a class and a windows form, in the form we are having a
function, now on some particular condition or some trigger event in
the method in Class, it have to trigger the event in the form.
Please help me in solving this.
How to implement this type of logic.
 
sanjeeva said:
Hi all,
I need some help in implementing a logic in an application with
delegates. The program flow is like this.

There exists a class and a windows form, in the form we are having a
function, now on some particular condition or some trigger event in
the method in Class, it have to trigger the event in the form.
Please help me in solving this.
How to implement this type of logic.

http://msdn.microsoft.com/en-us/library/9aackb16.aspx

The title is ".Net Framework Developer's Guide: How to: Raise and
Consume Events". This was the first hit on Google for MSDN raise event.
 
Back
Top