检查用户在tablelayoutpanel中单击的单元格中是否存在控件

时间:2013-12-31 12:55:36

标签: c# user-controls tablelayoutpanel

如何在用户点击的单元格上检查控件是否存在? tablelayoutpanel有什么功能吗? 我只是想检查一下,如果单击的单元格HasControl,则删除该特定单元格中的该控件。

1 个答案:

答案 0 :(得分:0)

没有内置功能,所以你必须自己找到单元格位置:

void tlp_MouseDown(object sender, MouseEventArgs e) {
  if (e.Button == MouseButtons.Left) {
    int[] colWidths = tlp.GetColumnWidths();
    int[] rowHeights = tlp.GetRowHeights();
    int top = tlp.Parent.PointToScreen(tlp.Location).Y;
    for (int y = 0; y < rowHeights.Length; ++y) {
      int left = tlp.Parent.PointToScreen(tlp.Location).X;
      for (int x = 0; x < colWidths.Length; ++x) {
        if (new Rectangle(left, top, colWidths[x], rowHeights[y])
                          .Contains(MousePosition)) {
          Control c = tlp.GetControlFromPosition(x, y);
          if (c != null) {
            c.Dispose();
          }
        }
        left += colWidths[x];
      }
      top += rowHeights[y];
    }
  }
}

请注意,从智能感知中看不到函数GetColumnWidths()GetRowHeights()。此外,如果用户点击控件本身,则此代码不会触发。您必须处理该单元格中控件的MouseDown事件。