在winform应用中改变组合框的高度

时间:2014-03-28 12:30:48

标签: c# winforms combobox size

我正在开发一种触摸屏设备的应用程序。为了方便用户,我需要改变组合框的大小。

我检查过很多内容,包括DrawItemEventHandlerMeasureItemEventHandler,但它并没有按照我的意愿运作。

基本上我想在不触及字体大小的情况下改变组合框的高度。当我更改组合框的字体大小时,它看起来像图像的左侧。 如何设置看起来像图像右侧的组合框?

enter image description here

顺便说一句,不知道它是否有效解决方案,我不使用数组字符串。我绑定的数据如。

 combobox.DisplayMember = "Name";
 combobox.ValueMember = "ID";
 combobox.DataSource = new BindingSource { DataSource = datalist };

提前致谢。

通过TaW解决方案,我设法按照自己的意愿设置项目。当组合框项目没有下降时,我唯一无法在中间设置文本。如何将此文本位置设置为中心?

enter image description here

1 个答案:

答案 0 :(得分:5)

您可以设置ItemHeight属性,然后在DrawItem事件中自行绘制项目。

非常难,搜索'ownerdraw'& '组合框'。 Code Project

上有一个例子

以下是从上述链接中提取的最小版本:

private void comboBox1_DrawItem(object sender, DrawItemEventArgs e)
{
    if (e.Index < 0) return;
    Font f = comboBox1.Font;
    int yOffset = 10;

    if ((e.State & DrawItemState.Focus) == 0)
    {
        e.Graphics.FillRectangle(Brushes.White, e.Bounds);
        e.Graphics.DrawString(comboBox1.Items[e.Index].ToString(), f, Brushes.Black, 
                              new Point(e.Bounds.X, e.Bounds.Y + yOffset));
    }
    else
    {
        e.Graphics.FillRectangle(Brushes.Blue, e.Bounds);
        e.Graphics.DrawString(comboBox1.Items[e.Index].ToString(), f, Brushes.White, 
                              new Point(e.Bounds.X, e.Bounds.Y + yOffset));
    }

}

您还必须将DropDownStyle设置为DropDownList才能突出显示,并且您需要将DrawMode设置为OwnerDrawFixed。 (或OwnerDrawVariable,如果你想对某些主题有不同的高度..)