如何在 tableLayoutPanel 中设置列跨度
我正在使用由两行组成的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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
设计者:在第二行放置一个控件,并将其 ColumnSpan 属性设置为 2。
在代码中:
With the designer: put a control in the 2nd row and set its ColumnSpan property to 2.
In code:
如果您使用的是 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.