C# listview 不同内容的字,颜色不同(急)
listview中行是动态加进去的,我想如果是“正常”用黑色,“异常”用红色,怎么实现?谢谢,急...
listview中行是动态加进去的,我想如果是“正常”用黑色,“异常”用红色,怎么实现?谢谢,急
展开
3个回答
展开全部
foreach (ListViewItem lvItems in myListView.Items)
{
if (lvItems.SubItems[0].Text == "正常")
{
//lvItems.BackColor = Color.Black;//背景色
lvItems.ForeColor = Color.Black;//字体颜色
}
else// if (lvItems.SubItems[0].Text == "异常")
{
//lvItems.BackColor = Color.Red;//背景色
lvItems.ForeColor = Color.Red;//字体颜色
}
}
{
if (lvItems.SubItems[0].Text == "正常")
{
//lvItems.BackColor = Color.Black;//背景色
lvItems.ForeColor = Color.Black;//字体颜色
}
else// if (lvItems.SubItems[0].Text == "异常")
{
//lvItems.BackColor = Color.Red;//背景色
lvItems.ForeColor = Color.Red;//字体颜色
}
}
展开全部
foreach (ListViewItem item in lsvStatus.Items)//对单元格进行字体或字颜色设置
{
item.UseItemStyleForSubItems = false;
if (item.SubItems[2].Text == "1") item.SubItems[2].ForeColor = Color.Red;
else if (item.SubItems[2].Text == "2") item.SubItems[2].ForeColor = Color.Yellow;
else if (item.SubItems[2].Text == "3") item.SubItems[2].ForeColor = Color.Blue;
else item.SubItems[2].ForeColor = Color.Green;
}
只有设置了ListViewItem 的 UseItemStyleForSubItems 为False。那么ListViewItem.ListViewSubItem的样式设置才有效。
{
item.UseItemStyleForSubItems = false;
if (item.SubItems[2].Text == "1") item.SubItems[2].ForeColor = Color.Red;
else if (item.SubItems[2].Text == "2") item.SubItems[2].ForeColor = Color.Yellow;
else if (item.SubItems[2].Text == "3") item.SubItems[2].ForeColor = Color.Blue;
else item.SubItems[2].ForeColor = Color.Green;
}
只有设置了ListViewItem 的 UseItemStyleForSubItems 为False。那么ListViewItem.ListViewSubItem的样式设置才有效。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
这个以前做过,你得先判断内容,在设置litview.rows[i].背景色
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询