ContainerControl events

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am extending the ContainerControl to create a new control that will display its controls in a pre-detirmined fashion (ie. a Repeater control)

I want to highlight the current ActiveControl by drwaing a rectangle around it

How do I determine when the ActiveControl on a ContainerControl has changed

Mike
 
* "=?Utf-8?B?TWlrZUg=?= said:
I am extending the ContainerControl to create a new control that will display its controls in a pre-detirmined fashion (ie. a Repeater control).

I want to highlight the current ActiveControl by drwaing a rectangle around it.

How do I determine when the ActiveControl on a ContainerControl has changed?

You can set up handlers for the controls' 'GotFocus' and 'LostFocus' events.
 
Back
Top