package com.shisan.lesson04;
import javax.swing.*;
import java.awt.*;
public class JFrameDemo {
//init(); 初始化
public void init(){
JFrame Jf = new JFrame("这是一个JFrame窗口");
Jf.setVisible(true);
Jf.setBounds(500,400,500,500);
Jf.setBackground(Color.GREEN);
//设置文字 Jlabel
JLabel label = new JLabel("欢迎来到召唤师峡谷");
Jf.add(label);
Container container = Jf.getContentPane();
container.setBackground(Color.ORANGE);
//设置居中
label.setHorizontalAlignment(SwingConstants.CENTER);
//关闭事件
Jf.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
}
public static void main(String[] args) {
new JFrameDemo().init();
}
}
java Swing初识
最新推荐文章于 2024-03-10 20:08:59 发布