PictureBox中的画面未显示(C#WIN FORMS)

时间:2017-01-22 13:18:16

标签: c# picturebox

(我正在使用带有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);

        }
    }

我附上了照片:

button before press - it shows a blank space

button after press - context menu appears

0 个答案:

没有答案