本文介绍了如何保存在我的Pictrebox中添加的所有Picturebox控件的一个图像?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 PictureBox picture00 = new PictureBox(); picture00.SizeMode = PictureBoxSizeMode.StretchImage; picture00.Image = new Bitmap(Application.StartupPath +\\\ \\ pic.jpg); picture00.Location = new System.Drawing.Point(145,172); picture00.Size = new System.Drawing.Size( 88,130); pictureBox1.Controls.Add(picture00); 解决方案 PictureBox picture00 = new PictureBox();picture00.SizeMode = PictureBoxSizeMode.StretchImage;picture00.Image = new Bitmap(Application.StartupPath + "\\pic.jpg");picture00.Location = new System.Drawing.Point(145, 172);picture00.Size = new System.Drawing.Size(88, 130);pictureBox1.Controls.Add(picture00); 解决方案 这篇关于如何保存在我的Pictrebox中添加的所有Picturebox控件的一个图像?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
09-27 00:21