GUI:多窗口展示

发布时间:2024年01月22日
public class textFrame2 {
    public static void main(String[] args) {
        //展示多个窗口

        myFrame f1 = new myFrame(100, 100, 200, 200, Color.cyan);
        myFrame f2 = new myFrame(300, 100, 200, 200, Color.red);
        myFrame f3 = new myFrame(100, 300, 200, 200, Color.yellow);
        myFrame f4 = new myFrame(300, 300, 200, 200, Color.lightGray);
    }

 static class myFrame extends Frame {
        static int id = 0;

        public myFrame(int x, int y, int w, int h, Color color) {
            super("myframe+" + (++id));
            setBackground(color);
            setBounds(x, y, w, h);
            setVisible(true);
        }
    }
}

文章来源:https://blog.csdn.net/2201_75903640/article/details/133840510
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。