如何让picturebox内的图象随着picturebox的大小变化而变化
2个回答
2015-07-06
展开全部
1.picturebox1.Anchor =AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left |AnchorStyles.Right);
2.图片对象image获取图片的大小改变窗体大小。
form1.Width += image.Width;
form1.Height += image.Height;
想问一下。这个窗体是不是就只用来显示图片?
2.图片对象image获取图片的大小改变窗体大小。
form1.Width += image.Width;
form1.Height += image.Height;
想问一下。这个窗体是不是就只用来显示图片?
展开全部
直接上代码即可:
string strWelcome = System.Windows.Forms.Application.StartupPath + "\\welcome.jpg";
if (File.Exists(strWelcome))
{
Bitmap bm = new Bitmap(Image.FromFile(strWelcome), ddoc.pictureBox1.Width, ddoc.pictureBox1.Height);
ddoc.pictureBox1.Image = bm;
}
string strWelcome = System.Windows.Forms.Application.StartupPath + "\\welcome.jpg";
if (File.Exists(strWelcome))
{
Bitmap bm = new Bitmap(Image.FromFile(strWelcome), ddoc.pictureBox1.Width, ddoc.pictureBox1.Height);
ddoc.pictureBox1.Image = bm;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询