c# 怎样将用OpenFileDialog 打开的图片添加到imagelist中去?

我想将OpenFileDialog打开的图片添加到imagelist中去,然后再listview中显示。但是怎样才能将打开的图片放到imagelist中呢... 我想将OpenFileDialog 打开的图片添加到imagelist中去 ,然后再listview中显示。但是怎样才能将打开的图片放到imagelist中呢 展开
 我来答
大龙游
2010-08-04
知道答主
回答量:25
采纳率:0%
帮助的人:7.7万
展开全部
private void button5_Click(object sender, EventArgs e)
{
OpenFileDialog OP = new OpenFileDialog();
OP.Filter = "*.bmp;*.jpg;*.gif|*.bmp;*.jpg;*.gif;*.jpeg";

if (OP.ShowDialog() == DialogResult.OK)
{
string filePath = OP.FileName;

this.imageList1.Images.Add(Image.FromFile(filePath));

this.pictureBox1.BackgroundImage = this.imageList1.Images[0];
this.pictureBox1.BackgroundImageLayout = ImageLayout.Stretch;
}
}
我用了这种方法把它加到imagelist的images中,但显示出来的效果变质了,不知是为什么。大家一起来讨论下
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式