回答链接:(我可以在组合框或列表控件中放置一条水平线吗?)
我在 C# (VS 2010) Windows 窗体中创建了一个代码,但它需要改进。项目前面的符号“-”在项目之后呈现一行。
我在组合项目集合中的输入如下:
-All Names
Henry (Father)
-Nancy (Mother)
Sapphire
Vincent
我的组合显示如下:
All Names
------------------
Henry (Father)
Nancy (Mother)
------------------
Sapphire
Vincent
虽然我的代码是:
public Form1()
{
InitializeComponent();
comboBox1.DrawMode = DrawMode.OwnerDrawFixed;
comboBox1.DrawItem += new DrawItemEventHandler(cmb_Type_DrawItem);
}
void cmb_Type_DrawItem(object sender, DrawItemEventArgs e)
{
e.DrawBackground();
string a = comboBox1.Items[e.Index].ToString();
if (comboBox1.Items[e.Index].ToString().Substring(0, 1) == "-")
{
e.Graphics.DrawLine(Pens.Black, new Point(e.Bounds.Left, e.Bounds.Bottom - 1),
new Point(e.Bounds.Right, e.Bounds.Bottom - 1));
a = a.Substring(1, a.Length - 1);
}
TextRenderer.DrawText(e.Graphics, a,
comboBox1.Font, e.Bounds, comboBox1.ForeColor, TextFormatFlags.Left);
e.DrawFocusRectangle();
}
我需要的改进是在“cmb_Type_DrawItem”中,我希望对“comboBox1”进行参数化,因此当我调用它时,它可以应用于任何调用它的组合框(不仅仅是组合框1)。