2010年6月4日 星期五

C# PictureBox with Image class

            Image ig = Image.FromFile("G:\\C++pj\\testImage\\testImage\\figure1.jpg");
           
           

            this.pictureBox1 = new System.Windows.Forms.PictureBox();
            this.pictureBox1.Image = ig;


1 則留言: