I've been reading up on delegates and BubbleEvents but this doesn't seem to be the answer to my simple problem.
I have a method in my base class which I would like to call from a dynamically loaded user control after it has executed some other code.
The method in my base class cannot be a static method (making it accessible to my user control) because it relies on other methods in the base class.
Do I need to create a delegate for this method or a bubble event?
Can somebody please point me in the right direction.
I have a method in my base class which I would like to call from a dynamically loaded user control after it has executed some other code.
The method in my base class cannot be a static method (making it accessible to my user control) because it relies on other methods in the base class.
Do I need to create a delegate for this method or a bubble event?
Can somebody please point me in the right direction.
Comment