如何拖放交换表格布局面板中的图片框
如何提供 TableLayoutPanel
功能以在单元格之间拖放控件并交换这些控件?
How to give TableLayoutPanel
functionality to drag drop controls between cells and swap those controls?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果 TLP 的行和列大小固定并且不自动调整大小(因为空行或空列可能会消失),则这是可行的。使用
Panel
作为控件的父级填充每个单元格可能会有所帮助,因此您只需交换面板的内容。管理 TLP 单元本身的控制有点复杂。想一想,当以这种受限制的方式使用 TLP 时,您不妨自己绘制一个面板控件网格。It would be feasible if the TLP is fixed size in rows and columns and not autosizing (because an empty row or column may disappear). And it may help to fill each cell with a
Panel
as parent of your controls, so you only have to swap the content of panels. Managing controls in the TLP cells themselves is a bit more complex. Come to think of it, when using a TLP in such a restricted way you might as well draw a grid of Panel controls yourself.