我创建了一个简单的 Windows 窗体应用程序 C#,它应该显示一张图片。我正在关注这里的教程以下是 form1.cs 的代码
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void pictureBox1_Click(object sender, EventArgs e)
{
// Construct an image object from a file in the local directory.
// ... This file must exist in the solution.
Image image = Image.FromFile("Picture1.png");
// Set the PictureBox image property to this image.
// ... Then, adjust its height and width properties.
pictureBox1.Image = image;
pictureBox1.Height = image.Height;
pictureBox1.Width = image.Width;
}
}
图像存在于解决方案文件夹中,但运行应用程序时窗口中仍然没有显示任何内容。没有编译错误。
更新
现在解决了。