所有事件用同一个方法就好
private void button_Click(object sender, EventArgs e)
{
foreach(Control ctl in Controls)
{
if(ctl is Button)
{
ctlBackColor = ColorGray;// 默认的浅色
}
}
((Button)sender)BackColor = ColorRed;
}
需要准备的材料分别有:电脑、浏览器、html编辑器。
1、首先,打开html编辑器,新建html文件,例如:indexhtml。
2、在indexhtml中的<style>标签中,输入css代码:button {background-color: #00a7d0}
button:hover {background-color: #ff7701}。
3、浏览器运行indexhtml页面,此时显示出了蓝色背景颜色的按钮。
4、将鼠标移入按钮,此时按钮的背景颜色变成了橙色。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)