如何在列表视图中显示图像?

时间:2014-07-20 10:18:16

标签: c#

我的知识存储在sql server中,例如列表视图中的数据样本显示如下,我写道:

item.SubItems.Add(dr["Fname"].ToString ());

我在字段列表中写的一个声明,单击文本框时显示了Vaio示例:

Vfname.Text = e.Item.SubItems[1].Text;

1 个答案:

答案 0 :(得分:1)

目前尚不清楚你要做什么,但我假设你应该使用System.Drawing.Image.FromFile()将Image对象添加到List View中,然后绘制它们调用Graphics.DrawImage,传递图像文件你在列表视图中有。

http://msdn.microsoft.com/en-us/library/42807xh1(v=vs.110).aspx

   Image newImage = Image.FromFile("SampImag.jpg");

    // Create Point for upper-left corner of image.
    Point ulCorner = new Point(100, 100);

    // Draw image to screen.
    e.Graphics.DrawImage(newImage, ulCorner);