1.在GridView数据行正常显示后,点击GridView,找到RowDeleting事件双击:
2.双击进入RowDeleting事件后台,写入如下代码即成。
if (e.Row.RowType == DataControlRowType.DataRow) { // 当鼠标停留时更改背景色 e.Row.Attributes.Add("onmouseover", "c=this.style.backgroundColor;this.style.backgroundColor='#8EC26F'"); // 当鼠标移开时还原背景色 e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=c"); // 设置悬浮鼠标指针形状为"小手" e.Row.Attributes["style"] = "Cursor:hand"; }
3.效果:当鼠标经过行时所在行显示为草绿色(#8EC26F)。