У меня есть пользовательский ComboBox
элемент управления, который я хочу использовать в DataGridViewCell
. Сначала я унаследовал DataGridViewCell
и пытаюсь переопределить метод Paint()
, чтобы нарисовать ComboBox
в ячейке.
Моя проблема в том, что после наследования DataGridViewColumn
и установки свойства CellTemplate
для нового экземпляра моего CustomDataGridViewCell
класса ячейка становится серой без содержимого.
Переменная класса cBox
создается в объекте ctor.
protected override void Paint(Graphics graphics, Rectangle clipBounds,
Rectangle cellBounds, int rowIndex, DataGridViewElementStates cellState,
object value, object formattedValue, string errorText,
DataGridViewCellStyle cellStyle, DataGridViewAdvancedBorderStyle borderStyle,
DataGridViewPaintParts paintParts)
{
// Call MyBase.Paint() without passing object for formattedValue param
base.Paint(graphics, clipBounds, cellBounds, rowIndex, cellState, value,
"", errorText, cellStyle, borderStyle, paintParts);
// Set ComboBox properties
this.cBox.CheckOnClick = true;
this.cBox.DrawMode = System.Windows.Forms.DrawMode.Normal;
this.cBox.DropDownHeight = 1;
this.cBox.IntegralHeight = false;
this.cBox.Location = new System.Drawing.Point(cellBounds.X, cellBounds.Y);
this.cBox.Size = new System.Drawing.Size(cellBounds.Width, cellBounds.Height);
this.cBox.ValueSeparator = ", ";
this.cBox.Visible = true;
this.cBox.Show();
}
Как правильно нарисовать ComboBox
в клетке?