前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
社区首页 >专栏 >鼠标移动,改变DataGrid颜色

鼠标移动,改变DataGrid颜色

作者头像
Java架构师必看
发布2021-03-22 15:18:56
发布2021-03-22 15:18:56
2.1K0
举报
文章被收录于专栏:Java架构师必看Java架构师必看

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

本文由来源 21aspnet,由 javajgs_com 整理编辑,其版权均为 21aspnet 所有,文章内容系作者个人观点,不代表 Java架构师必看 对观点赞同或支持。如需转载,请注明文章来源。

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档