Java MigLayout 拉伸为 BorderLayout

发布于 2024-12-21 20:46:43 字数 352 浏览 0 评论 0原文

请问,MigLayout 中是否有任何选项可以将某些元素拉伸到 JPanel 大小的 100%?就像使用 BorderLayout 将 JButton 添加到 JFrame 中一样?谢谢。

代码:

Jframe frame = new JFrame();  
frame.setLayout(new MigLayout());  
JPanel mainPanel = new JPanel(new MigLayout());  
mainPanel.add(new JButon());

我希望 JButton 填充 JFrame 的整个区域。 JButton 只是我用来解释我想要实现的目标的参考对象。

Please, is there any option in MigLayout to stretch some element 100% of the JPanel size? Like when you add JButton into JFrame using BorderLayout? Thanks.

Code:

Jframe frame = new JFrame();  
frame.setLayout(new MigLayout());  
JPanel mainPanel = new JPanel(new MigLayout());  
mainPanel.add(new JButon());

I want the JButton to fill entire area of JFrame. JButton is only reference object I used to explain what I want to achieve.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小草泠泠 2024-12-28 20:46:43

为此,您可以使用“增长”。这应该与在中心添加边框布局相同。

请参阅下面的 miglayout 备忘单

http://migcalendar.com/miglayout/cheatsheet.html

public class test {

    public static void main(String[] args) {
        JFrame frame = new JFrame();  
        JPanel mainPanel = new JPanel(new MigLayout());  
        mainPanel.add(new JButton(), "dock center");
        // or 
        //mainPanel.add(new JButton(), "dock center");

        frame.getContentPane().add(mainPanel);
        frame.setSize(200,200);
        frame.setVisible(true);
    }
}

You can use "grow" for this. This should do same as border layout adding in centre.

See miglayout cheat sheet below

http://migcalendar.com/miglayout/cheatsheet.html

public class test {

    public static void main(String[] args) {
        JFrame frame = new JFrame();  
        JPanel mainPanel = new JPanel(new MigLayout());  
        mainPanel.add(new JButton(), "dock center");
        // or 
        //mainPanel.add(new JButton(), "dock center");

        frame.getContentPane().add(mainPanel);
        frame.setSize(200,200);
        frame.setVisible(true);
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文