我们有一个自定义组合框工作在一个窗体上,显示一些形状而不是文本。要做到这一点,我所要做的就是覆盖OnDrawItem函数并显示我们想要的内容。这是一个参考片段:
protected override void OnDrawItem(DrawItemEventArgs e)
{
base.OnDrawItem(e);
e.DrawBackground();
if (e.Index >= 0)
{
Brush brush = new SolidBrush(Color.LightGray);
int size = this.Height/2;
int origenX = e.Bounds.X + 1;
int origenY = e.Bounds.Y + 3;
System.Drawing.Drawing2D.GraphicsPath path =
new System.Drawing.Drawing2D.GraphicsPath();
switch (e.Index)
{
case 0:
e.Graphics.FillRectangle(brush, origenX, origenY, size, size);
Rectangle r = new Rectangle(origenX, origenY, size, size);
ControlPaint.DrawBorder(e.Graphics, r, Color.Black,
ButtonBorderStyle.Solid);
break;
case 1:
path.AddEllipse(origenX, origenY, size, size);
e.Graphics.FillPath(brush, path);
e.Graphics.DrawPath(Pens.Black, path);
break;
}
}
}
因此,如果您将其添加到表单并向集合中添加几个项目,您在下拉列表中看到的只是一个正方形和一个圆圈。
好的,所以,我现在要做的是将这个相同的组合框添加到DataGridView。我知道这个控件有一个DataGridViewComboBoxColumn。我试图扩展控件,但是,我没有看到这个OnDrawItem函数要覆盖。我猜有类似的东西吗? 任何帮助,将不胜感激。 谢谢!
答案 0 :(得分:0)
您需要将DataGridView ComboBox解释为您的自定义Combobox。
private void dgTest_EditingControlShowing(object sender, DataGridViewEditingControlShowingEventArgs e)
{
if (dgTest.CurrentCell.ColumnIndex == 0) // Which column ever is your DataGridComboBoxColumn
{
// This line will enable you to use the DataDridViewCOmboBox like your
// Custom ComboBox.
CustomComboBox combo = e.Control as CUstomComboBox;
}
}