您当前的位置: 首页 > 

鼠标移动,改变DataGrid颜色

发布时间:2004-10-24 22:45:00 ,浏览量:0

Sub DataGrid1_ItemDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.DataGridItemEventArgs)             If e.Item.ItemType = ListItemType.Item Or _             e.Item.ItemType = ListItemType.AlternatingItem Then              '---------------------------------------------------          ' Add the OnMouseOver and OnMouseOut method to the Row of DataGrid          '---------------------------------------------------          e.Item.Attributes.Add("onmouseover", "this.style.backgroundColor='Silver'")             e.Item.Attributes.Add("onmouseout", "this.style.backgroundColor='white'")             End If         End Sub         Sub DataGrid2_ItemDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.DataGridItemEventArgs)             If e.Item.ItemType = ListItemType.Item Or _             e.Item.ItemType = ListItemType.AlternatingItem Then              '---------------------------------------------------          ' Add the OnMouseOver and OnMouseOut method a Cell (Column) of DataGrid          '---------------------------------------------------          e.Item.Cells(1).Attributes.Add("onmouseover", "this.style.backgroundColor='#DDEEFF'")             e.Item.Cells(1).Attributes.Add("onmouseout", "this.style.backgroundColor='white'")              '---------------------------------------------------          ' Change the Mouse Cursor of a particular Cell (Column) of DataGrid          ' (Or you may do it for a whole Row of DataGrid :)          '---------------------------------------------------          e.Item.Cells(3).Style("cursor") = "hand"              '---------------------------------------------------          ' Add the OnClick Alert MessageBox to a particular Cell (Column) of DataGrid          '---------------------------------------------------          e.Item.Cells(3).Attributes.Add("onclick", "alert('You click at ID: " & e.Item.Cells(0).Text & "!');")             End If     End Sub
关注
打赏
1688896170
查看更多评论

暂无认证

  • 0浏览

    0关注

    109273博文

    0收益

  • 0浏览

    0点赞

    0打赏

    0留言

私信
关注
热门博文
立即登录/注册

微信扫码登录

0.0714s