我如何从列表视图获取图像并将其分配给图片框?

发布于 2024-09-09 08:44:05 字数 105 浏览 8 评论 0原文

我有一个列表视图,其中存储了图像,现在对于我的幻灯片放映,我希望将此图像添加到图片框中。但没有得到从列表视图获取图像的确切方法。

有人对此有一些想法吗?

提前致谢。

i have one listview in which i have stored images, now for my slide show i want this images to picture box. but not getting exact way to get images from the listview.

can anybody has some idea about this ?

thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

虐人心 2024-09-16 08:44:05

不久前我也遇到过类似的问题。
Microsoft 的这篇文章非常有帮助: http://msdn.microsoft.com/en-us/library/system.windows.forms.picturebox.image%28VS.80%29.aspx

特别是这部分

   ListViewItem selection = ListView1.GetItemAt(e.X, e.Y);

   // If the user selects an item in the ListView, display
   // the image in the PictureBox.
   if (selection != null)
   {
        PictureBox1.Image = System.Drawing.Image.FromFile(
            selection.SubItems[1].Text);
   }

I had a similar problem some while ago.
This artical from Microsoft was very helpfull: http://msdn.microsoft.com/en-us/library/system.windows.forms.picturebox.image%28VS.80%29.aspx

Especially this part

   ListViewItem selection = ListView1.GetItemAt(e.X, e.Y);

   // If the user selects an item in the ListView, display
   // the image in the PictureBox.
   if (selection != null)
   {
        PictureBox1.Image = System.Drawing.Image.FromFile(
            selection.SubItems[1].Text);
   }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文