别的不多说了,上代码,直接看 首先设置这行,或者属性窗口设置,这样才可以启动手动绘制,参数有三个 Normal: 自动绘制 OwnerDrawFixed:手动绘制,但间距相同 OwnerDrawVariable:手动绘制,间距不同 listBox1.DrawMode= DrawMode.OwnerDrawFixed 然后在DrawItem事件中写绘制代码 e.Graphics.FillRectangle(new SolidBrush(color), e.Bounds);//绘制背景 e.Grap…