我扩展了DataGridView单元格以显示角落中Tag属性的文本(例如,在日历的角落显示日期编号),并希望能够指定文本的颜色和不透明度。 / p>
为了实现这一点,我在子类DataGridView单元格中添加了2个属性,但它们并未在运行时存储它们的值。这是DataGridViewCell和Column:
class DataGridViewLabelCell : DataGridViewTextBoxCell
{
private Color _textColor;
private int _opacity;
public Color TextColor { get { return _textColor; } set { _textColor = value; } }
public int Opacity { get { return _opacity; } set { _opacity = value; } }
protected override void Paint(Graphics graphics,
Rectangle clipBounds,
Rectangle cellBounds,
int rowIndex,
DataGridViewElementStates cellState,
object value,
object formattedValue,
string errorText,
DataGridViewCellStyle cellStyle,
DataGridViewAdvancedBorderStyle advancedBorderStyle,
DataGridViewPaintParts paintParts)
{
// Call the base class method to paint the default cell appearance.
base.Paint(graphics, clipBounds, cellBounds, rowIndex, cellState,
value, formattedValue, errorText, cellStyle,
advancedBorderStyle, paintParts);
if (base.Tag != null)
{
string tag = base.Tag.ToString();
Point point = new Point(base.ContentBounds.Location.X, base.ContentBounds.Location.Y);
Font font = new Font("Arial", 25.0F, FontStyle.Bold);
graphics.DrawString(tag, font, new SolidBrush(Color.FromArgb(_opacity, _textColor)), cellBounds.X, cellBounds.Y);
}
}
}
public class DataGridViewLabelCellColumn : DataGridViewColumn
{
public DataGridViewLabelCellColumn(Color TextColor, int Opacity = 128)
{
DataGridViewLabelCell template = new DataGridViewLabelCell();
template.TextColor = TextColor;
template.Opacity = Opacity;
this.CellTemplate = template;
}
}
我按如下方式添加列:
col = new DataGridViewLabelCellColumn(Color.Blue, 115);
dgv.Columns.Add(col);
col.HeaderText = "Saturday";
col.Name = "Saturday";
但是,如果我在graphics.DrawString
行添加断点,_textColor
和_opacity
都没有值。如果我按如下方式分配默认值:
private Color _textColor = Color.Red;
private int _opacity = 128;
然后它工作正常。如何确保将值存储在CellTemplate中?
答案 0 :(得分:0)
我认为这是因为CellTemplate
存储为更通用的DataGridViewCell
,而不是子类LabelCell
。无论如何,将值存储在Column上只是从那里引用它们就可以了:
DataGridViewLabelCellColumn clm = (DataGridViewLabelCellColumn)base.OwningColumn;
int opacity = clm.Opacity;
Color textColor = clm.TextColor;
graphics.DrawString(tag, font, new SolidBrush(Color.FromArgb(opacity, textColor)), cellBounds.X, cellBounds.Y);