Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Windows 形式的 Flowlayout 和 Tablelayout 有什么区别?我知道我可以谷歌它,但我的时间有点短。
我的要求也是,当表格调整大小时。调整表单大小不应该弄乱我对控件的对齐,它应该对分辨率变化做出反应。
TableLayout将使您的控件保持网格模式,并将调整大小以填充表单(如果停靠到父容器)。AFlowLayout将控件放置在(默认情况下)水平行中,如果控件不完全适合,则将控件换行到下一行。当面板调整大小时,包装应该动态发生。您也可以将其设置为垂直换行。
TableLayout
FlowLayout
听起来你应该使用TableLayout.