Windows窗体不提供任何功能来执行此操作.但是,您可以编写自己的代码并使表单分辨率独立.
这不是一个完整的例子,可以使窗体独立于分辨率,但是,你可以从这里获得逻辑.当您快速调整窗口大小时,以下代码会产生问题.
码:
private Size oldSize;
private void Form1_Load(System.Object sender, System.EventArgs e)
{
    oldSize = base.Size;
}
protected override void OnResize(System.EventArgs e)
{
    base.OnResize(e);
    foreach (Control cnt in this.Controls) {
        ResizeAll(cnt, base.Size);
    }
    oldSize = base.Size;
}
private void ResizeAll(Control cnt, Size newSize)
{
    int iWidth = newSize.Width - oldSize.Width;
    cnt.Left += (cnt.Left * iWidth) / oldSize.Width;
    cnt.Width += (cnt.Width * iWidth) / oldSize.Width;
    int iHeight = newSize.Height - oldSize.Height;
    cnt.Top += (cnt.Top * iHeight) / oldSize.Height;
    cnt.Height += (cnt.Height * iHeight) / oldSize.Height;
}
否则,您可以使用任何第三方控件,如DevExpress Tool.有LayoutControl它提供相同的服务.您可以在运行时显示和隐藏任何控件而不留空格.