调整窗口大小时自动调整TableLayoutPanel行的大小

时间:2013-07-18 08:30:55

标签: c# winforms layout tablelayoutpanel

我有一个简单的1x3 TableLayoutPanel。我想要实现一个非常简单的事情:当调整窗口大小时,调整中间行的大小并保持顶部和底部相同。我尝试做逻辑事情,即设置刚性的顶行和底行大小并自动调整中间行。不幸的是,这是调整大小的最后一行。

// 
// tableLayoutPanel1
// 
this.tableLayoutPanel1.ColumnCount = 1;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel1.Controls.Add(this.topPanel, 0, 0);
this.tableLayoutPanel1.Controls.Add(this.middlePanel, 0, 1);
this.tableLayoutPanel1.Controls.Add(this.bottomPanel, 0, 2);
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 1;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 140F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 24F));
this.tableLayoutPanel1.Size = new System.Drawing.Size(1102, 492);
this.tableLayoutPanel1.TabIndex = 19;

所有内部面板都将Dock设置为Fill和默认锚点。我究竟做错了什么?

3 个答案:

答案 0 :(得分:9)

将中间行更改为100%,这将告诉系统中间行将填补剩余的空白。所以改变这个(我相信它是你的designer.cs):

this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());

为:

this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));

检查TableLayoutPanel.RowStyle from MSDN

  
      
  1. 将RowStyle设置为Absolute的行视为第一行,并分配其固定高度。
  2.   
  3. RowStyle设置为AutoSize的行的大小与其内容相同。
  4.   
  5. 剩余空间在行之间划分,其中RowStyle设置为Percent。
  6.   

答案 1 :(得分:1)

只需设置第一行和第三行的绝对大小:

tableLayoutPanel1.RowStyles[0].Height = 100;
tableLayoutPanel1.RowStyles[0].SizeType = SizeType.Absolute;
tableLayoutPanel1.RowStyles[2].Height = 100;
tableLayoutPanel1.RowStyles[2].SizeType = SizeType.Absolute;

确保第二(中间)行应该有SizeType = SizeType.PercentHeight = 100。您的Form最多应为Height 200。

答案 2 :(得分:1)

我做了

this.tableLayoutPanel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));

它有效... 通过设置锚的顶部和底部我确保如果调整大小,行将变得更大/更小,并通过使第一和第三行绝对大小和中间百分比大小我确保只有中间将变大/变小