(我正在使用带有WinForms的C#。)
它没有在我的图片框中显示图片, 而是出现一个空格。
为什么不起作用?
(该文件位于正确的文件夹中)。
这是我的代码:
public void AddMenuButtons() // Add menu button to all of my tabs
{
foreach (TabPage tabPge in tabPcStore.TabPages)
{
PictureBox pic = new PictureBox();
pic.Name = "picboxUser1";
pic.ImageLocation = Application.StartupPath + @"\KfirPicture.png";
pic.Location = new Point(1, 10);
pic.Click += new EventHandler(this.picboxUser_Click);
tabPge.Controls.Add(pic);
}
}
我附上了照片: