如何在 tableLayoutPanel 中设置列​​跨度

发布于 2024-10-19 19:58:54 字数 78 浏览 1 评论 0原文

我正在使用由两行组成的tableLayoutPanel。在第一行我想要两列, 在第二行中我只需要一列。我该怎么做?

I am using a tableLayoutPanel which consist of two rows. In first row I want two columns,
and in second row I only need one column. How can I do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

海的爱人是光 2024-10-26 19:58:54

设计者:在第二行放置一个控件,并将其 ColumnSpan 属性设置为 2。

在代码中:

    public Form1() {
        InitializeComponent();
        var button = new Button();
        button.Dock = DockStyle.Fill;
        tableLayoutPanel1.Controls.Add(button);
        tableLayoutPanel1.SetCellPosition(button, new TableLayoutPanelCellPosition(0, 1));
        tableLayoutPanel1.SetColumnSpan(button, 2);
    }

With the designer: put a control in the 2nd row and set its ColumnSpan property to 2.

In code:

    public Form1() {
        InitializeComponent();
        var button = new Button();
        button.Dock = DockStyle.Fill;
        tableLayoutPanel1.Controls.Add(button);
        tableLayoutPanel1.SetCellPosition(button, new TableLayoutPanelCellPosition(0, 1));
        tableLayoutPanel1.SetColumnSpan(button, 2);
    }
绝影如岚 2024-10-26 19:58:54

如果您使用的是 Visual Studio,只需将要放入第 2 行的控件的 ColumnSpan 属性设置为“2”,它就会处理该问题。

If you are on visual studio, just set the ColumnSpan property of control you want to put in row 2 to '2' and it will take care of that.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文