How do I draw a line between ListBoxItems

2019-07-17 03:23发布

问题:

I want to be able to separate each item in a listbox with a horizontal line.

This is just some of my code for drawing the items.

    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();
    }

回答1:

After FillRectangle(...) use this:

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