标签: java swing jpanel
如果我通过使用方法setPreferedSize(new Dimension(0,160,10,10))来设置JPanel的大小但是我添加了很多其他组件(例如一系列大按钮)和面板超过160px的大小:我如何找到面板的实际高度?
答案 0 :(得分:2)
使用JComponent#getHeight()。来自其JavaDoc:Returns the current height of this component.
JComponent#getHeight()
Returns the current height of this component.