我如何在ListBoxItems之间画一条线

问题描述 投票:2回答:2

我希望能够用水平线分隔列表框中的每个项目。

这只是我绘制项目的一些代码。

    private void symptomsList_DrawItem(object sender, System.Windows.Forms.DrawItemEventArgs e)
    {
        bool selected = ((e.State & DrawItemState.Selected) == DrawItemState.Selected);
        int index = e.Index;
        Graphics g = e.Graphics;
        Color color;
        if (selected == true)
        {
            color = Color.Red;
        }
        else
        {
            color = Color.Pink;
        }
        /* Draw Background */
        g.FillRectangle(new SolidBrush(color), e.Bounds);

        /* Draw Item Text */
        g.DrawString(symptomsList.Items[e.Index].ToString(), e.Font, new SolidBrush(Color.Black), e.Bounds, StringFormat.GenericDefault);

        e.DrawFocusRectangle();
    }
c# winforms listbox
2个回答
3
投票

之后FillRectangle(...)使用此:

Color borderColor = Color.Black;
g.DrawRectangle(new Pen(borderColor), e.Bounds);

0
投票

//在InitializeComponent()之后添加此行;症状List.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawVariable;

© www.soinside.com 2019 - 2024. All rights reserved.