1

这是我在列表框中绘制和着色项目的类。功能是ColorListBox。如果我使用 8 号字体,它看起来还可以,但如果我使用 20 号字体,则 listBox 中的项目相互重叠;他们之间没有空间。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Drawing;
using System.Windows.Forms;

namespace GatherLinks
{
    class ColorText
    {   
        public static void Texts(RichTextBox box, string text, Color color)
        {
            box.SelectionStart = box.TextLength;
            box.SelectionLength = 0;

            box.SelectionColor = color;
            box.AppendText(text);
            box.SelectionColor = box.ForeColor;
        }

        public static void ColorListBox(List<string> data, DrawItemEventArgs e)
        {
            string strLeft = null;
            string strMid = "---";
            string strRight = null;

            if (data[e.Index].Contains(strMid))
            {
                int index = data[e.Index].IndexOf(strMid);
                strLeft = data[e.Index].Substring(0, index);
                strRight = data[e.Index].Substring(index + strMid.Length);
            }

            using (Font f = new Font(FontFamily.GenericSansSerif, 20, FontStyle.Regular))
            {
                float startPos;
                e.Graphics.DrawString(strLeft, f, Brushes.Red, e.Bounds.X, e.Bounds.Y);
                startPos = e.Graphics.MeasureString(strLeft, f).Width;
                e.Graphics.DrawString(strMid, f, Brushes.Black, e.Bounds.X + startPos, e.Bounds.Y);
                startPos = e.Graphics.MeasureString(strLeft + strMid, f).Width;
                e.Graphics.DrawString(strRight, f, Brushes.Green, e.Bounds.X + startPos, e.Bounds.Y);

            }
        }
    }
}

这是尺寸为 20 时的外观图像:

在此处输入图像描述

4

3 回答 3

1

尝试,

listbox1.IntegralHeight=false; // where listbox1 is your listbox's ID
listbox1.Height=some_int_number;
于 2013-03-06T17:40:38.923 回答
1

尝试自己在 ListBox 中绘制项目。

将 ListBox 的 DrawMode 属性设置为 OwnerDrawVariable。通过 Designer 或代码执行此操作:

myListBox.DrawMode = DrawMode.OwnerDrawVariable;

为 DrawItem 和 MeasureItem 设置 ListBox 事件。通过 Designer 或代码执行此操作:

myListBox.DrawItem += new DrawItemEventHandler(DrawItem);
myListBox.MeasureItem += new MeasureItemEventHandler(MeasureItem);

这将允许您在为 ListBox 中的每个项目触发 DrawItem 和 MeasureItem 事件时收到通知。

为您正在收听的事件添加事件处理程序。如果您通过设计器添加它们,这些将自动填充。

private void DrawItem(object sender, DrawItemEventArgs e)
{
    e.DrawBackground();
    e.DrawFocusRectangle();

    // You'll change the font size here. Notice the 20
    e.Graphics.DrawString(data[e.Index],new Font(FontFamily.GenericSansSerif, 20, FontStyle.Bold), new SolidBrush(color[e.Index]),e.Bounds);
}

private void MeasureItem(object sender, MeasureItemEventArgs e)
{
    // You may need to experiment with the ItemHeight here..
    e.ItemHeight = 25;
}
于 2013-03-06T17:47:20.157 回答
1

我遇到了同样的问题。

对我有帮助的是增加字体大小后增加 ListBox.ItemHeight 属性。

于 2019-08-05T18:48:06.267 回答