1

我想做的是将包含图像的列添加到 DataTable。创建列/行后,DataTable 将作为 DataGrid 的源。

我尝试了 resolveUrl 方法,但没有用。

你能帮我在我的数据表中添加一个图像列吗?

4

1 回答 1

1

取自这个问题

 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.

然后您可以这样设置 MyImage 列

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