I want to know how to override the mouse events of a ToolStripButton,specifically MouseEnter and MouseDown/MouseUp.
I've found many examples of this in the net but i don't know how to use them.Let's say this:
protected override void OnMouseEnter(EventArgs e)
{
base.OnMouseEnter(e);
}
Yeah,and then what?I really don't know how to use it...Can someone help me with that with some example or something?Thanks in advance.