How to combine events?

  • Thread starter Thread starter 2003et
  • Start date Start date
2

2003et

I have to use a panel in win form. This panel is hidden at the left and when
you move your mouse there, the panel slides in to the form (to right)...

Like the VS.NET's toolbox bar at the left...

Now I did my panel and set the events. When MouseHover event occurs, it
slides in...

If I put a component in this panel and move mouse to component, the
MouseHover event of panel ENDS and panel slides out...

How can I solve this? or should I set all the component's events to not
slide out?

Thanks
 
Ok, I solved my problem by using Form's MouseEnter event instead of Panel's
MouseLeave event...
 
Back
Top