您好,,我想请问一下C# datagrid控件 是怎么改变行背景色的??
4个回答
展开全部
在gridview控件右上方有个箭头的,里面鼠标单击可以选择编辑列选项,里面有每个列的设置,包括颜色,也可以直接套用模板。
追问
不是datagridview。。。。是datagrid。。。。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-10-18
展开全部
public static void OnMouseOver(GridViewRowEventArgs e, string MouseOverColor)
{
ListItemType itemType = (ListItemType)e.Row.RowType;
if (itemType == ListItemType.Item)
{
e.Row.Attributes["onmouseout"] = "javascript:this.style.backgroundColor='#ffffff';";
e.Row.Attributes["onmouseover"] = "javascript:this.style.backgroundColor='" + MouseOverColor + "';cursor='hand';";
}
else if (itemType == ListItemType.AlternatingItem)
{
e.Row.Attributes["onmouseout"] = "javascript:this.style.backgroundColor='#ffffff';";
e.Row.Attributes["onmouseover"] = "javascript:this.style.backgroundColor='" + MouseOverColor + "';cursor='hand';";
}
}
{
ListItemType itemType = (ListItemType)e.Row.RowType;
if (itemType == ListItemType.Item)
{
e.Row.Attributes["onmouseout"] = "javascript:this.style.backgroundColor='#ffffff';";
e.Row.Attributes["onmouseover"] = "javascript:this.style.backgroundColor='" + MouseOverColor + "';cursor='hand';";
}
else if (itemType == ListItemType.AlternatingItem)
{
e.Row.Attributes["onmouseout"] = "javascript:this.style.backgroundColor='#ffffff';";
e.Row.Attributes["onmouseover"] = "javascript:this.style.backgroundColor='" + MouseOverColor + "';cursor='hand';";
}
}
追问
GridViewRowEventArgs 缺少引用。。。我在网上看到别人说用paint方法。。
private void dataGrid1_Paint(object sender, System.Windows.Forms.PaintEventArgs e)
{}
我想请问。。。你知道怎么进入到这个方法里面不???
追答
///
/// 给GridView1一个绑定事件
///
///
///
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
//调用鼠标滑过变背景的方法e是鼠标事件“#ccc”是背景颜色
OnMouseOver(e, "#ccc");
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
datagrid控件里有许多属性的,你可以根据不同的属性来设置行背景色,如
<AlternatingItemStyle BackColor="FloralWhite"></AlternatingItemStyle>
<HeaderStyle BackColor="LightGoldenrodYellow"></HeaderStyle>
<AlternatingItemStyle BackColor="FloralWhite"></AlternatingItemStyle>
<HeaderStyle BackColor="LightGoldenrodYellow"></HeaderStyle>
更多追问追答
追问
问题是我的datagrid控件里面没有这些属性。。。。
追答
你是用什么环境开发的,VS?如果是的话,在控件上右键点击属性,就会出现属性选项卡,在属性选项卡里对属性进行设置就可以了。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询