如何在列表框中的项目之间添加填充?

时间:2013-03-08 16:28:43

标签: c# winforms visual-studio-2012 listbox padding

我想知道是否有办法在订单项之间添加填充。这是一个用于平板电脑的表格,每个表格之间的空间可以更容易地选择不同的项目。

任何人都知道我该怎么做?

1 个答案:

答案 0 :(得分:6)

有一个ItemHeight属性。

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

当您使用DrawMode.OwnerDrawFixed时,您必须“手动”绘制/绘制项目。

以下是一个示例:Combobox appearance

上面链接的代码(由max编写/提供):

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