在我的应用程序中,我使用一个JFrame和多个jpanel。
我使用setExtendedState()
方法制作JFrame fullScreen。在主jFrame中,我在运行时加载jpanel。当我加载jPanel时,我使用jPanel.setBound(0,0,1000,500)。
在1024 x 756
尺寸屏幕中看起来很好。但是当屏幕尺寸发生变化时,jPanel看起来很小。
是否可以保持jPanels的比例,包括其他组件。
我不喜欢使用JInternalFrame来处理MDI。因为当JInternalFrame最大化时,这看起来非常难看。
我在面板中使用null布局。
答案 0 :(得分:1)
我建议您使用“GridBagLayout”。