Hi
check out this link :
http://www.windowsforms.net/ControlGallery/ControlDetail.aspx?Control=230&tabindex=5
or roll your own :)
public class RolloverButton : Button {
private Color _NormalColor;
public RolloverButton()
: base() {
}
protected override void OnMouseEnter(EventArgs e) {
base.OnMouseEnter(e);
_NormalColor = this.BackColor;
this.BackColor = Color.Red;
}
protected override void OnMouseLeave(EventArgs e) {
base.OnMouseLeave(e);
this.BackColor = _NormalColor;
}
}
Hope this helps you out :)