C# 动态更改ListBox某一行的颜色

网上不乏使用listBox1_DrawItem更改Listbox某一行颜色的资料,但是一般是在选中ListBox等触发事件发生时,Listbox颜色才会发生变化。

这种方法貌似不能对颜色实时更改。

C# 动态更改ListBox某一行的颜色_第1张图片

因此可参照下文在需要改变颜色的位置对其实时绘制:

首先将listbox属性DrawMode设置为OwnerDrawVariable

C# 动态更改ListBox某一行的颜色_第2张图片

添加代码:

Color vColor = Color.Gainsboro;
Graphics devcolor = listBox1.CreateGraphics();

后续在想要更改颜色处执行:

vColor = Color.Lime;
devcolor.FillRectangle(new SolidBrush(vColor), listBox1.GetItemRectangle(i));
devcolor.DrawString(listBox1.Items[i].ToString(), listBox1.Font, new SolidBrush(listBox1.ForeColor), listBox1.GetItemRectangle(i));
                 

你可能感兴趣的:(C# 动态更改ListBox某一行的颜色)