再次提出对内部窗口位置设置
怎么用setBounds()和setLocation 对内部窗口设置位置不起作用,始终在左上角显示;应该用什么方法来设置JInternalFrame显示位置.
public void reshape(int x, int y, int width, int height)
JComponent
中的 reshape
x
- 给出该组件新水平位置的整数,该位置从其容器的左边开始,以像素为单位
y
- 给出该组件新垂直位置的整数,该位置从其容器的底边开始,以像素为单位
width
- 给出该组件新宽度的整数,以像素为单位
height
- 给出该组件新高度的整数,以像素为单位