更改ListBox项目间距

时间:2013-03-08 18:29:05

标签: c# visual-studio-2010 listbox

我有这个界面:

enter image description here

我想要做的是将左边的ListBox中的名称与右边的网格对齐或间隔,以便每个名称与每个网格行内联。

我试过这个:

lstNames.ItemHeight = 15;

但这不会影响它。注意:我的listbox是动态创建的,并使用数据库填充。

有关如何实现这一目标的任何提示?

1 个答案:

答案 0 :(得分:1)

您必须将DrawMode属性更改为OwnerDrawFixed才能使用自定义ItemHeight

当您使用DrawMode.OwnerDrawFixed时,您必须paint/draw items "manually".

引自此Max发布Combobox appearance

Stackoverflow
public class ComboBoxEx : ComboBox
{
    public ComboBoxEx()
    {
        base.DropDownStyle = ComboBoxStyle.DropDownList;
        base.DrawMode = DrawMode.OwnerDrawFixed;
    }

    protected override void OnDrawItem(DrawItemEventArgs e)
    {
        e.DrawBackground();
        if(e.State == DrawItemState.Focus)
            e.DrawFocusRectangle();
        var index = e.Index;
        if(index < 0 || index >= Items.Count) return;
        var item = Items[index];
        string text = (item == null)?"(null)":item.ToString();
        using(var brush = new SolidBrush(e.ForeColor))
        {
            e.Graphics.TextRenderingHint = System.Drawing.Text.TextRenderingHint.ClearTypeGridFit;
            e.Graphics.DrawString(text, e.Font, brush, e.Bounds);
        }
    }
}