6

DataGridView で次のようなものを探しています。

Image  | Text | 
Text   | Text |
Image  | Text

基本的に、同じ行に Image セルと Text セルが必要です。チェックボックス、テキストなど、さまざまなタイプで動作させることができました...しかし、画像では動作させることができません。

次のエラーが表示されます。Invalid Cast from 'System.String' to 'System.Drawing.Image'

誰かが解決策を知っているか、これをどのように行うべきかについて提案がありますか? ありがとう

4

3 に答える 3

7

It is relatively easy to have a column of type DataGridViewImageColumn display text in certain cells.

All you need to do is replace a desired cell with a DataGridViewTextBoxCell.

So for example, if I add the following image column to my grid:

DataGridViewImageColumn imageColumn = new DataGridViewImageColumn();
imageColumn .Name = "ImageColumn";
imageColumn .HeaderText = "An Image!";
Image i = Image.FromFile(@"C:\Pictures\TestPicture.jpg");
imageColumn.Image = i;
dataGridView1.Columns.Add(imageColumn);

You can replace a given cell with text like so (here in a button handler but you could also do it somewhere like within a databinding complete handler).

private void button1_Click(object sender, EventArgs e)
{
    dataGridView1.Rows[3].Cells["ImageColumn"] = new DataGridViewTextBoxCell();
    dataGridView1.Rows[3].Cells["ImageColumn"].Value = "Some text!";  
}

This solution leaves a little bit of work for you if you want different images (you need to bind to a property of type image) and if you want different text. Since the Value property of an image column is of type Image you cannot use the same binding.

You could make your own overridden image column that handled this, but it would be a bit of work, that might not pay for itself vs. simply setting the value for the cells where you want text directly.

于 2012-07-14T14:56:24.853 に答える
0

より良い解決策については、このブログスポットの投稿を参照してください。

私は自分のプロジェクトで同じソリューションを試しましたが、データグリッドセルに16X16ピクセルの画像を表示するためにうまく機能しています。上記のTextandImageColumnクラスで関数を編集しました:

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)
    {
        // Paint the base content
        base.Paint(graphics, clipBounds, cellBounds, rowIndex, cellState,
           value, formattedValue, errorText, cellStyle,
           advancedBorderStyle, paintParts);

        if (this.Image != null)
        {
            PointF p = cellBounds.Location;
            p.X += 0;
            p.Y += 4;

            graphics.DrawImage(this.Image, p);
        }
    }
于 2013-12-04T10:44:19.550 に答える