我如何将多个控件放置在 TableLayoutPanel 的特定单元格中
我正在使用 TableLayoutPanel 控件,在我的场景中,我必须将两个控件放置在一个特定单元格内,这可能吗?如果是这样,请详细说明。
I'm using a TableLayoutPanel control and in my scenario I have to place two controls inside of one particular cell, is that possible? If so, please elaborate.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您应该在该单元格内使用面板或任何其他内容控件,然后您就可以在其中添加许多控件。
You should use a Panel or any other content control inside that cell and then you'll be able to add many controls inside it.
在单元格中放置一个表格布局面板,并为其指定两列和一行。这是你的两个“细胞”。
Put a tablelayout panel in the cell and give it two columns and one row. There's your two "cells".
在单元格内放置一个面板,在该面板控件中您可以放置任意数量的控件
Put a Panel inside the cell and in that panel control you can place as many controls as you want
尝试这样的操作:
1)创建用户控件并将所需的所有控件放置在其上,然后在单元格中添加新控件
2)将控件放入面板中,然后将面板放入单元格中
Try something like this:
1) Create user control and place all control you want on it and than add new control in the cell
2) Put controls in the panel then put panel in the cell