3

DataGridViewセルを拡張して、隅にあるTagプロパティのテキストを表示し(たとえば、カレンダーの隅に日番号を表示する)、テキストの色と不透明度を指定できるようにしたいと思います。

これを実現するために、サブクラス化されたDataGridViewセルに2つのプロパティを追加しましたが、実行時に値を保存していません。これはDataGridViewCellと列です。

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に確実に格納されるようにするにはどうすればよいですか?

4

1 に答える 1

0

これは、がサブクラス化されたものではなくCellTemplate、より一般的なものとして格納されているためだと思います。いずれにせよ、列に値を保存し、そこから値を参照するだけで問題なく機能します。DataGridViewCellLabelCell

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);
于 2012-12-26T20:06:52.537 に答える