private void button2_Click(object sender, EventArgs e)
        {            
                
                PictureBox p = new PictureBox();
                Bitmap bmp = new Bitmap(System.Reflection.Assembly.GetExecutingAssembly().GetManifestResourceStream("WindowsFormsApplication9.0410161.jpg"));
                p.Image = bmp;
                Point n = new Point(200,500);
                p.Location = n; 
            
            
        }
为什么我这段代码不能成功显示bmp图片呢? 这样写对吗PictureBox p = new PictureBox()?