c#鼠标移动到Button 改变颜色怎么实现啊,

C#的按钮mouseon那些触发事件在哪写呢,
2024-12-15 09:49:21
推荐回答(3个)
回答1:

在button的事件处理中添加事件:onmouseover="this.style.color='red';"改变字体为红色。如果需要改变为某个样式则写:this.className="样式名";

回答2:

private void button1_MouseEnter(object sender, EventArgs e)
{
button1.BackColor=你想要的颜色
}private void button1_MouseLeave(object sender, EventArgs e)
{//在这里恢复背景色 }

回答3:

onmouseover是当鼠标移动到上面触发的~比如你有一个Button 的标签