1

私がやりたいのは、画像を含む列を DataTable に追加することです。列/行を作成した後、DataTable は DataGrid のソースとして提供されます。

resolveUrl メソッドを試しましたが、うまくいきませんでした。

DataTable に画像列を追加するのを手伝ってくれませんか?

4

1 に答える 1

1

Taken from This Question

 DataTable table = new DataTable("ImageTable"); //Create a new DataTable instance.

 DataColumn column = new DataColumn("MyImage"); //Create the column.
column.DataType = System.Type.GetType("System.Byte[]"); //Type byte[] to store image bytes.
 column.AllowDBNull = true;
 column.Caption = "My Image";

 table.Columns.Add(column); //Add the column to the table.

Then you can set the MyImage column as such

DataRow row = table.NewRow();
row["MyImage"] = <Image byte array>;
tables.Rows.Add(row);
于 2012-07-15T11:16:39.803 に答える