Custom Focus

  • Thread starter Thread starter Phil Jones
  • Start date Start date
P

Phil Jones

Is there some interface I have to implement to make a custom control recieve
focus (and be recognized as recieving focus)?

Thanks everyone.
 
See the docs for the Control.Focus method for a list
of things that a control must fulfil in order to receive
input focus. Basically the ControlStyles.Selectable style bit
must be true and the control must be enabled and visible

/claes
 
Back
Top