Does Label send an Enter event?

  • Thread starter Thread starter Richard Lewis Haggard
  • Start date Start date
R

Richard Lewis Haggard

I have a label control for which I've added a handler for the Enter event.
However, it doesn't not appear that this event ever gets called. Does Label
support Enter? If yes, is there something special that needs to be done in
order to enable this event?
 
The standard Label control is not selectable, meaning it cannot receive
focus. Therefore its Enter event is never raised. What is the purpose of
this event handler?

Tony
 
It was part of a system that would allow a date time picker that was not
actively being edited and also did not have a valid user input value to
display as a blank rectangle. I've decided to use a text box instead and it
almost does what I want.
 
Back
Top