作者在 2016-03-04 16:13:35 发布以下内容
import java.awt.Container;
import javax.swing.*;
import java.awt.*;
public class Example extends JFrame
{
public void CreateJFrame(String title)
{
JFrame jf=new JFrame(title);
Container container=jf.getContentPane();
JLabel jl=new JLabel("这是一个JFrame窗体");
jl.setHorizontalAlignment(SwingConstants.CENTER);
container.add(jl);
container.setBackground(Color.white);
jf.setVisible(true);
jf.setSize(500,300);
jf.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
}
public static void main(String[] args)
{
new Example().CreateJFrame("创建一个JFrame窗体");
}
}