在button的事件处理中添加事件:onmouseover="this.style.color='red';"改变字体为红色。如果需要改变为某个样式则写:this.className="样式名";
private void button1_MouseEnter(object sender, EventArgs e)
{
button1.BackColor=你想要的颜色
}private void button1_MouseLeave(object sender, EventArgs e)
{//在这里恢复背景色 }
onmouseover是当鼠标移动到上面触发的~比如你有一个Button 的标签