c# 怎样将用OpenFileDialog 打开的图片添加到imagelist中去?
我想将OpenFileDialog打开的图片添加到imagelist中去,然后再listview中显示。但是怎样才能将打开的图片放到imagelist中呢...
我想将OpenFileDialog 打开的图片添加到imagelist中去 ,然后再listview中显示。但是怎样才能将打开的图片放到imagelist中呢
展开
1个回答
展开全部
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中,但显示出来的效果变质了,不知是为什么。大家一起来讨论下
{
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中,但显示出来的效果变质了,不知是为什么。大家一起来讨论下
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询