怎样可以改变vb.net中的datagrid控件中某个单元格的颜色
在我的列表中,有一项是数据库中,a元素等于1时,vb.net中datagrid中的显示为红色,2为绿色,3为黄色。请问如何只改变单元格的颜色。谢谢各位高手的帮忙!我用的v...
在我的列表中,有一项是数据库中,a元素等于1时,vb.net中datagrid中的显示为红色,2为绿色,3为黄色。请问如何只改变单元格的颜色。谢谢各位高手的帮忙!
我用的vb.net没有datagridview控件... 展开
我用的vb.net没有datagridview控件... 展开
1个回答
展开全部
在Private Sub DataGridView1_CellFormatting(.....)事件中加入一下代码:
if e.value="1" then
e.cellstyle.baclcolor=color.red
end if
if e.value="2" then
e.cellstyle.baclcolor=color.green
end if
if e.value="3" then
e.cellstyle.baclcolor=color.yellow
end if
if e.value="1" then
e.cellstyle.baclcolor=color.red
end if
if e.value="2" then
e.cellstyle.baclcolor=color.green
end if
if e.value="3" then
e.cellstyle.baclcolor=color.yellow
end if
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |