窗体内的控件随窗体的大小改变控件大小

Posted skyhorseyk

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了窗体内的控件随窗体的大小改变控件大小相关的知识,希望对你有一定的参考价值。

  public Form1()

        {

            InitializeComponent();

            int count = this.Controls.Count * 2+2;

            float[] factor = new float[count];

            int i = 0;

            factor[i++] = Size.Width;

            factor[i++] = Size.Height;

            foreach(Control ctrl in this.Controls)

            {

                factor[i++] = ctrl.Location.X / (float)Size.Width;

                factor[i++] = ctrl.Location.Y / (float)Size.Height;

                ctrl.Tag = ctrl.Size;

            }

            Tag = factor;

        }



        private void Form1_Resize(object sender, EventArgs e)

        {

            float[] scale = (float[])Tag;

            int i = 2;



            foreach (Control ctrl in this.Controls)

            {

                ctrl.Left = (int)(Size.Width * scale[i++]);

                ctrl.Top = (int)(Size.Height * scale[i++]);

                ctrl.Width = (int)(Size.Width / (float)scale[0] * ((Size)ctrl.Tag).Width);

                ctrl.Height = (int)(Size.Height / (float)scale[1] * ((Size)ctrl.Tag).Height);  



                //每次使用的都是最初始的控件大小,保证准确无误。

            }

        }

 

以上是关于窗体内的控件随窗体的大小改变控件大小的主要内容,如果未能解决你的问题,请参考以下文章

C#控件的位置和大小随窗体大小的变化而变化

WinForm开发中实现控件随窗体大小的改变而自动适应其改变

vb中一个窗口中的控件随窗口的大小改变而相应改变位置

怎样使delphi里的控件随窗体的大小变化而变化

vb中如何使窗体和控件的相对位置不发生改变

QT怎么设置控件在窗口大小发生变化的时候,使控件始终居于右上角