如何调整图片框和图片的大小取决于表单的大小

时间:2014-04-27 06:18:59

标签: c#

我想制作一个带有图片框的表格,并在调整表格大小时调整图片框的大小,同时调整图片框中的图片大小调整图片框。如何操作?抱歉我的英语不好

2 个答案:

答案 0 :(得分:0)

尝试添加此方法:

private void Form1_Resize(object sender, System.EventArgs e)
{
   Control control = (Control)sender;


   double percentage = 0.7;    
   int width = control.Size.Width;
   //width = (int)Math.Round(test*perc); imagewidth 70% of form width
   int heigth = control.Size.Width;

   picturebox1.Size = new Size(width,height);  

}

答案 1 :(得分:0)

停靠父窗体中的图片框,并将图片框SizeMode属性更改为拉伸