Derived classes cannot raise base class events????

  • Thread starter Thread starter John Smith
  • Start date Start date
J

John Smith

Derived classes cannot raise base class events????

I am subclassing (or should I say now Inheriting) a standard control
The Inherited control uses lots of APIs, some APIs change a few control
states but those changes are not reflected on the kept properties

Is there a way to fast update the properties or ... I am lost ;(
 
Define protected methods in your base class that raise your event, and in
your derived class call theses methods where you want to raise event.
 
Back
Top