C# asp。net gridview 设置光标所在行的颜色 5
如题。我要设置指定gridview行的颜色,也就是说鼠标的光标在哪一行,就把哪一行的颜色设置成指定颜色。鼠标移走以后,只要不点击其它行,那前一行的颜色不变(因为焦点没有变...
如题。我要设置指定gridview行的颜色,也就是说鼠标的光标在哪一行,就把哪一行的颜色设置成指定颜色。鼠标移走以后,只要不点击其它行,那前一行的颜色不变(因为焦点没有变),要怎么做呢???!!
展开
2个回答
展开全部
再GridView RowDataBound里加哪伏蚂一些东西就OK
protected void Grid_List_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Attributes.Add("OnMouseOut", "this.style.backgroundColor=this.originalcolor;");
e.Row.Attributes.Add("李埋OnMouseOver", "this.originalcolor=this.style.backgroundColor;this.style.backgroundColor='#FFFFCC';");
e.Row.Attributes.Add("style", "cursor:pointer");
if (Grid_List.DataKeys[e.Row.RowIndex].Value.ToString() != "0")
{
e.Row.Attributes.Add("OnClick", "厅大window.open('Car_Detail.aspx?F_ID=" + Grid_List.DataKeys[e.Row.RowIndex].Value + "','_self')");
}
}
}
protected void Grid_List_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Attributes.Add("OnMouseOut", "this.style.backgroundColor=this.originalcolor;");
e.Row.Attributes.Add("李埋OnMouseOver", "this.originalcolor=this.style.backgroundColor;this.style.backgroundColor='#FFFFCC';");
e.Row.Attributes.Add("style", "cursor:pointer");
if (Grid_List.DataKeys[e.Row.RowIndex].Value.ToString() != "0")
{
e.Row.Attributes.Add("OnClick", "厅大window.open('Car_Detail.aspx?F_ID=" + Grid_List.DataKeys[e.Row.RowIndex].Value + "','_self')");
}
}
}
追问
这种方法应该只能实现鼠标在上面的时候变颜色,拿开的时候恢复颜色吧。。。我想达到的效果是,鼠标发生单击事件时,那一行的颜色变成指定的颜色,鼠标移开后,颜色也不变,知道发生下一次单击动作。
追答
额,这不是一样的道理嘛!!你修改下我添加的那个事件就好啊!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询