datagrid 移动鼠标时背景色改变

来源:互联网 发布:辐射3 for mac 编辑:程序博客网 时间:2024/04/28 03:44
if(e.Item.ItemType   ==   ListItemType.Item     ||   e.Item.ItemType   ==   ListItemType.AlternatingItem)  
   {  
    //添加自定义属性,当鼠标移过来时设置该行的背景色为"6699ff",并保存原背景色  
    e.Item.Attributes.Add("onmouseover","currentcolor=this.style.backgroundColor;this.style.backgroundColor='#6699ff'");  
    //添加自定义属性,当鼠标移走时还原该行的背景色  
    e.Item.Attributes.Add("onmouseout","this.style.backgroundColor=currentcolor");  
   
   } 
原创粉丝点击