博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
鼠标停留在GridView某一行时行的颜色改变
阅读量:5729 次
发布时间:2019-06-18

本文共 778 字,大约阅读时间需要 2 分钟。

hot3.png

protected void gvdegreetype_RowDataBound(object sender, GridViewRowEventArgs e)    {        if (e.Row.RowType == DataControlRowType.DataRow)        {            e.Row.Attributes.Add("onmouseover", "this.style.backgroundColor='GhostWhite'");            e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor='white'");        }    }

具体实现方法可以选择GRIDVIEW控件,然后属性栏附件的事件触发,选择RowDataBound事件,双击之后,即实现方法的调用。

protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e){ //当鼠标移到的时候设置该行颜色为"", 并保存原来的背景颜色 e.Row.Attributes.Add("onmouseover", "currentcolor=this.style.backgroundColor;this.style.backgroundColor='#6699CC'"); //当鼠标移走时还原该行的背景色 e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=currentcolor");}

转载于:https://my.oschina.net/monkeybiao/blog/96771

你可能感兴趣的文章
mysql 行转列列转行
查看>>
《设计模式系列》---桥接模式
查看>>
[Unity3d]Shader 着色器 学习前了解知识
查看>>
Linux中文件颜色所代表的属性和颜色
查看>>
Redrain duilib中事件委托存在的问题
查看>>
43、我的C#学习笔记9
查看>>
网站建表实践及优化
查看>>
字符串的简单操作
查看>>
C#新功能--命名参数与可选参数
查看>>
构建ASP.NET MVC4+EF5+EasyUI+Unity2.x注入的后台管理系统(22)-权限管理系统-模块导航制作...
查看>>
strtok和strtok_r
查看>>
维辰超市:借助云商城成功转型新零售
查看>>
[Linux]Web性能测试http_load
查看>>
Airbnb 宣布放弃使用 React Native,回归使用原生技术
查看>>
中外RFID技术差异何在?
查看>>
codeforces B. The Meeting Place Cannot Be Changed【二分】
查看>>
文章相似度比较
查看>>
web.xml中<load-on-start>n</load-on-satrt>作用
查看>>
python之路---进程
查看>>
python中,如何将字符串转换为数字(将数字转换为整型),字符串的10转换为整型的10,10.5转换为10...
查看>>