当前位置: 技术问答>java相关
一个awt的问题,关于布局管理器
来源: 互联网 发布时间:2015-08-29
本文导语: GridLayou布局管理器的第二种构造函数:public GridLayout(int rows, int cols),资料上讲:生成一个rows行,cols列的管理器,最多能放置rows*cols个组件。但是实际上好像还可以放更多组件,而且都能正常显示,难道资料上错...
GridLayou布局管理器的第二种构造函数:public GridLayout(int rows, int cols),资料上讲:生成一个rows行,cols列的管理器,最多能放置rows*cols个组件。但是实际上好像还可以放更多组件,而且都能正常显示,难道资料上错了吗?
请高手指教!
请高手指教!
|
When both the number of rows and the number of columns have been set to non-zero values, either by a constructor or by the setRows and setColumns methods, the number of columns specified is ignored. Instead, the number of columns is determined from the specified number or rows and the total number of components in the layout. So, for example, if three rows and two columns have been specified and nine components are added to the layout, then they will be displayed as three rows of three columns. Specifying the number of columns affects the layout only when the number of rows is set to zero.
|
没有
位置重叠,占位而已
不推荐使用
位置重叠,占位而已
不推荐使用