27

我有 TableLayoutPanel,我以编程方式将 Rows 添加到其中。用户基本上选择了一个属性,然后将其与一些控件一起显示在表格中。我想我在这里有一个普遍的理解问题,我会尝试解释它。

每行中的一个控件是一个“删除”按钮。该按钮应该删除它所在的行。我所做的是向按钮添加一个事件处理程序并设置当前行数。

deleteTalent.Click += (sender, e) => buttonClickHandler(numberOfRows);

处理程序的代码:

private void buttonClickHandler(int rowCount)
{
    int count = rowCount - 1;
    for (int i = count; i < (count + 5); i++)
    {
        balanceTable.Controls.RemoveAt(count);
    }
    balanceTable.RowStyles.RemoveAt(count);
    balanceTable.RowCount--;

}

我看了好几个小时,到处玩。但我找不到有效的清洁解决方案。我对 C# 也很陌生

这是创建新行的完整函数:

private void addBalanceItems(ToolStripMenuItem item)
{
    int numberOfRows = balanceTable.RowCount;
    if (numberOfRows > 1)
    {
        balanceTable.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.AutoSize));

    }
    balanceTable.Height = numberOfRows * 45;
    Steigerungsrechner rechner = new Steigerungsrechner();
    string tag = item.Tag.ToString();

    //change that asap :(
    if (tag == "A") { rechner.column = 1; }
    if (tag == "B") { rechner.column = 2; }
    if (tag == "C") { rechner.column = 3; }
    if (tag == "D") { rechner.column = 4; }
    if (tag == "E") { rechner.column = 5; }
    if (tag == "F") { rechner.column = 6; }
    if (tag == "G") { rechner.column = 7; }
    if (tag == "H") { rechner.column = 8; }

    Label talentName = new Label();
    talentName.Text = item.Text;
    talentName.Height = standardHeight;
    talentName.TextAlign = ContentAlignment.MiddleLeft;
    talentName.AutoSize = true;
    Label cost = new Label();
    cost.TextChanged += (sender, e) => costChangeHandler(cost);
    cost.Height = standardHeight;
    cost.TextAlign = ContentAlignment.MiddleLeft;
    TextBox startValue = new TextBox();
    startValue.TextChanged += (sender, e) => startValueChangeHandler(rechner, startValue, cost);
    startValue.Height = standardHeight;
    startValue.TextAlign = HorizontalAlignment.Center;
    TextBox endValue = new TextBox();
    endValue.TextChanged += (sender, e) => endValueChangeHandler(rechner, endValue, cost);
    endValue.Height = standardHeight;
    endValue.TextAlign = HorizontalAlignment.Center;
    Button deleteTalent = new Button();
    deleteTalent.Text = "x";
    deleteTalent.Click += (sender, e) => buttonClickHandler(numberOfRows);
    deleteTalent.Height = standardHeight;

    balanceTable.Controls.Add(talentName);
    balanceTable.Controls.Add(startValue);
    balanceTable.Controls.Add(endValue);
    balanceTable.Controls.Add(cost);
    balanceTable.Controls.Add(deleteTalent);
    balanceTable.Visible = true;
    balanceTable.RowCount++;
}

任何帮助将不胜感激!:)

4

5 回答 5

29

是的,从 TableLayoutPanel 中删除任意行一点都不直观。他们真的把这个设计搞砸了。

删除行的唯一方法是设置RowCount属性。仅这一点就够奇怪了。该属性确实看起来应该是只读的,并且每次看到它时,执行此操作的代码对我来说都是错误的。

但除此之外,这种设计的结果是您不能从中间删除行。重置该RowCount属性只会导致行从底部删除。

解决方法有点笨拙,有多个步骤会出错:

  1. 从要删除的行中删除控件
  2. 如果适用,将这些控件移动到另一行。
  3. 将要删除的行之后的其他行中的所有控件向上移动一行。
  4. RowCount最后,通过递减属性的值来删除最后一行。

快速的谷歌搜索显示有人编写并共享了声称这样做的代码。它在 VB.NET 中,但应该很容易翻译成您的母语。

我承认我知道我只是平底船并将RowHeight我希望“删除”的行设置为 0。这样,自动调整大小就可以为你工作。不过,您可能仍想删除它包含的控件。

于 2013-03-20T23:08:12.310 回答
22

这是一个静态类,可以帮助您通过索引删除任何行:

using System.Windows.Forms;

public static class TableLayoutHelper
{
    public static void RemoveArbitraryRow(TableLayoutPanel panel, int rowIndex)
    {
        if (rowIndex >= panel.RowCount)
        {
            return;
        }

        // delete all controls of row that we want to delete
        for (int i = 0; i < panel.ColumnCount; i++)
        {
            var control = panel.GetControlFromPosition(i, rowIndex);
            panel.Controls.Remove(control);
        }

        // move up row controls that comes after row we want to remove
        for (int i = rowIndex + 1; i < panel.RowCount; i++)
        {
            for (int j = 0; j < panel.ColumnCount; j++)
            {
                var control = panel.GetControlFromPosition(j, i);
                if (control != null)
                {
                    panel.SetRow(control, i - 1);
                }
            }
        }

        var removeStyle = panel.RowCount - 1;

        if (panel.RowStyles.Count > removeStyle)
            panel.RowStyles.RemoveAt(removeStyle);

        panel.RowCount--;
    }
}

有一件事要提:我们通过的控件panel.GetControlFromPosition(...)必须是可见的,否则它将返回null而不是不可见的控件。

于 2015-07-12T19:58:25.263 回答
2

rowCount首先删除现有的控件

for(int i = 0; i < panel.ColumnCount; i++){
     Control Control = panel.GetControlFromPosition(i, rowCount);
     panel.Controls.Remove(Control);
  }

然后删除行

panel.RowStyles.RemoveAt(rowCount-1);
于 2017-03-22T06:41:58.297 回答
1

删除完整的表 -

tableLayoutPanel1.Controls.Clear();
tableLayoutPanel1.RowStyles.Clear();

再次设置您的表格标题-

            tableLayoutPanel.RowCount = 1;
            tableLayoutPanel.RowStyles.Add(new RowStyle(SizeType.Absolute, 20F));
            tableLayoutPanel.Controls.Add(new Label() { Text = "MONTH", Font = new Font("Century Gothic", 12, FontStyle.Bold), ForeColor = Color.LightGray }, 0, tableLayoutPanel.RowCount - 1);
            tableLayoutPanel.Controls.Add(new Label() { Text = "YEAR", Font = new Font("Century Gothic", 12, FontStyle.Bold), ForeColor = Color.LightGray }, 1, tableLayoutPanel.RowCount - 1);
            tableLayoutPanel.Controls.Add(new Label() { Text = "MEASURED WAFERS", Font = new Font("Century Gothic", 12, FontStyle.Bold), ForeColor = Color.LightGray }, 2, tableLayoutPanel.RowCount - 1);

3 列 - 1 行

也许有人可以使用我的代码片段,效果很好......

于 2017-03-31T07:32:23.880 回答
0

您不能完全删除一行,tablelayoutpanel但有一个解决方法:

  1. 删除行中的所有控件,如果您知道控件的名称,则更容易,因为您可以调用 dispose 方法。
  2. 将行的高度设置为可能2px使用行样式方法(例如tablelayoutpanel1.Rowstyle(index).height=2

对我来说,这创造了奇迹,无论行索引如何,行都完全折叠了行。

于 2017-10-14T16:51:08.950 回答