[转][C#]Combobox 行高

时间:2023-03-08 19:50:10
namespace System.Windows.Forms
{
class ComboBoxEx : ComboBox
{
public ComboBoxEx()
{
DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
DrawItem += (s, e) =>
{
if (e.Index < ) return;
e.DrawBackground();
e.DrawFocusRectangle();
e.Graphics.DrawString(GetItemText(Items[e.Index]), e.Font, new SolidBrush(e.ForeColor), e.Bounds.X, e.Bounds.Y + );
};
ItemHeight = ;
}
}
}

代码来自:https://www.cnblogs.com/yimeishui/p/5803920.html