java GUI编程 frame和Panel 设置可能出现的问题

java GUI编程 frame和Panel 设置可能出现的问题,第1张

java GUI编程 frame和Panel 设置可能出现的问题

如果你用frame.add(panel)有可能会出现panel把整个frame铺满的问题,无论你设置panel的大小和位置如图:

import java.awt.*;

public class TextGUI {

    public frame setWindowse(String Titie1,int x,int y,int height,int width,Color color)
    {
        frame frame1 = new frame(Titie1);
        //设置可见性
        frame1.setVisible(true);
        //设置窗口大小
        frame1.setSize(width,height);
        //设置颜色
        frame1.setBackground(color);
        //d出的初始位置
        frame1.setLocation(x,y);
        //设置大小固定
        frame1.setResizable(false);
        return frame1;
    }
}
import java.awt.*;

public class gui extends TextGUI{
    public static void main(String[] args) {
            gui g1 = new gui();
            Panel pane1 =new Panel();
            //设置布局
            pane1.setLayout(null);
            //设置窗口参数
            frame frame2 = g1.setWindowse("第二个",300,300,500,500,Color.white);
            //设置面板参数
            pane1.setBackground(new Color(10,1,1));
            pane1.setBounds(50,50,400,400);
            //把面板加到窗口里
            frame2.add(pane1);

    }
}

 

正常情况应该是这样:

 那么为什么会出现这样的错误呢,原因是官方提供的方法就有问题,同样的代码会运行出不同的结果,但是有个玄学的办法,就是多声明几个frame然后设置成不显示,就可以了

import java.awt.*;

public class gui extends TextGUI{
    public static void main(String[] args) {
            gui g1 = new gui();
            Panel pane1 =new Panel();
            //设置布局
            pane1.setLayout(null);
            //设置窗口参数
            frame frame2 = g1.setWindowse("第二个",300,300,500,500,Color.white);
            frame frame3 = g1.setWindowse("第3个",300,300,500,500,Color.blue);
            frame frame4 = g1.setWindowse("第3个",300,300,500,500,Color.red);
            frame3.setVisible(false);
            frame4.setVisible(false);
            //设置面板参数
            pane1.setBackground(new Color(10,1,1));
            pane1.setBounds(50,50,300,300);
            //把面板加到窗口里
            frame2.add(pane1);
    }
}

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5717008.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-18
下一篇 2022-12-18

发表评论

登录后才能评论

评论列表(0条)

保存