我有以下代码:
foto = new System.Windows.Forms.PictureBox();
((System.ComponentModel.ISupportInitialize)(foto)).BeginInit();
foto.BackgroundImage = global::Catalogo_Digital.Properties.Resources.voltar;
foto.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
foto.Location = new System.Drawing.Point(85, 85);
foto.Name = "foto";
foto.Size = new System.Drawing.Size(1000, 800);
foto.TabIndex = 0;
foto.TabStop = false;
internal System.Windows.Forms.PictureBox foto;
问题是这个名为“foto”的图片框在我调试时没有显示,它只是看不见,我不知道。我只是想创建一个“内部”或“公共”图片框,而不是在设计师模式下,只使用代码。