c#中加载图像的代码 按btn控件,弹出选择文件的对话框,选择后img控件显...
若以下回答无法解决问题,邀请你更新回答
1个回答
展开全部
从工具箱拖一个pictureBox,一个button和一个openFileDialog到窗体上,双击按钮,输入以下代码
private void button1_Click(object sender, EventArgs e)
{
if (this.openFileDialog1.ShowDialog() != DialogResult.OK)
return;
try
{
Image img = Image.FromFile(this.openFileDialog1.FileName);
this.pictureBox1.Image = img;
this.BackgroundImage = img;
}
catch (System.Exception ex)
{
MessageBox.Show("载入图像失败!");
}
}
其中this.pictureBox1.Image = img;
this.BackgroundImage = img;
这两行都可以显示图像,你可以分别注释掉看效果
private void button1_Click(object sender, EventArgs e)
{
if (this.openFileDialog1.ShowDialog() != DialogResult.OK)
return;
try
{
Image img = Image.FromFile(this.openFileDialog1.FileName);
this.pictureBox1.Image = img;
this.BackgroundImage = img;
}
catch (System.Exception ex)
{
MessageBox.Show("载入图像失败!");
}
}
其中this.pictureBox1.Image = img;
this.BackgroundImage = img;
这两行都可以显示图像,你可以分别注释掉看效果
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询