JFrame:简单应用

发布时间:2023年12月26日

import javax.swing.*;
import java.awt.*;

public class JFramemy01 {

    public static void main(String[] args) {
    new MyJframe2().init();
    }
}
class MyJframe2 extends JFrame{
    public void init(){
        this.setBounds(100,100,200,300);
        this.setVisible(true);
        JLabel label=new JLabel("!!!!!!");
        this.add(label);
        //获得容器
        Container container=this.getContentPane();
        container.setBackground(Color.cyan);
    }
}


import javax.swing.*;
import java.awt.*;

public class JFramemy02 {
    public static void main(String[] args) {
        new MyJframe3().init();

    }
}
class MyJframe3 extends JFrame{
    public void init(){
        this.setBounds(100,100,200,300);
        this.setVisible(true);
        JLabel label=new JLabel("!!!!!!");
        this.add(label);
        //center
        label.setHorizontalAlignment(SwingConstants.CENTER);
        //获得容器
        Container container=this.getContentPane();
        container.setBackground(Color.cyan);
    }

}

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