listbox隔行显示不同颜色

通过创建一个继承自ListBox的自定义控件,重写OnDrawItem事件,可以实现在Winform应用程序中ListBox隔行显示不同颜色的效果。在重写事件中,根据行索引判断奇偶行,并使用不同颜色填充背景并绘制文字。同时,通过捕获消息(WndProc)来绘制黄色边框,使得控件更加明显。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

要实现这个效果很简单,只需自定义一个类继承ListBox,然后重写OnDrawItem事件就可以了,下面看代码

class CListbox:ListBox
    {
       
        [System.Runtime.InteropServices.DllImport("user32.dll")]
        static extern IntPtr GetWindowDC(IntPtr hWnd);
        [System.Runtime.InteropServices.DllImport("user32.dll")]
        static extern int ReleaseDC(IntPtr hWnd, IntPtr hDC);

        protected override void OnDrawItem(DrawItemEventArgs e)
        {
            
            Graphics g = e.Graphics;
            
            if (e.Index % 2 == 0)
            {
                
                g.FillRectangle(new SolidBrush(Color.WhiteSmoke), e.Bounds);
                g.DrawString(Items[e.Index].ToString(), e.Font, new SolidBrush(Color.Blue), e.Bounds);
                
            }
            else
            {

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值