tableLayoutPanel上方的空白空间

时间:2017-04-26 09:07:38

标签: c# winforms tablelayoutpanel

我有tableLayoutPanel有两列,我动态添加多行。一切正常,但在应用程序启动后,第一行上方会出现大量空白区域。

图像的外观如下:enter image description here

我的代码与tableLayoutPanel相关:

private void CreateAccountViews(int count)
    {
        for (int i = 0; i < count; i++)
        {
            if (i % 2 == 0)
                accountsTable.RowCount++;
            AccountView acView = new AccountView();
            acView.Name = "acView" + i.ToString();
            if (i % 2 == 0)
                accountsTable.Controls.Add(acView, 0, accountsTable.RowCount - 1);
            else
                accountsTable.Controls.Add(acView, 1, accountsTable.RowCount - 1);
        }   
    }

动态添加新行:

{{1}}

0 个答案:

没有答案