我有这个界面:
我想要做的是将左边的ListBox
中的名称与右边的网格对齐或间隔,以便每个名称与每个网格行内联。
我试过这个:
lstNames.ItemHeight = 15;
但这不会影响它。注意:我的listbox
是动态创建的,并使用数据库填充。
有关如何实现这一目标的任何提示?
答案 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);
}
}
}