我正在开发一个winform应用程序。我需要在单选按钮上添加悬停颜色。我找不到任何相同的事件处理程序。
当鼠标悬停在单选按钮上时,我想更改单选按钮的颜色。
请告诉我,如何实现这一目标。
提前致谢!!
答案 0 :(得分:4)
尝试更改backColor属性。
例如,On Mouse Hover Event:
private void radioButton1_MouseHover(object sender, EventArgs e)
{
this.radioButton1.BackColor = System.Drawing.Color.Yellow;
}
当鼠标悬停在radiobutton的背景颜色时会变为黄色。
和On Mouse Leaving事件:
private void radioButton1_MouseLeave(object sender, EventArgs e)
{
this.radioButton1.BackColor = System.Drawing.Color.Empty;
}
单选按钮背景颜色将更改回默认颜色。
比,你会受到徘徊的影响。
祝你好运。