java – 使用BorderLayout将JButton放在屏幕的中心
作者:互联网
如何使用BorderLayout()将JButton添加到JFrame的中心?我尝试使用BorderLayout.CENTER,但它取代了屏幕的中心,它给出了屏幕的顶部中心.或者我是否必须使用其他布局管理器?
解决方法:
将JPanel放在CENTER中,并将布局设置为GridBagLayout或BoxLayout,如this answer到Set component at center of the page所示.
GridBagLayout用于居中包含Nested Layout Example中所见的黄色/红色渐变图像的标签.
标签:border-layout,java,swing,layout-manager 来源: https://codeday.me/bug/20190926/1820531.html