我是靠谱客的博主 执着摩托,最近开发中收集的这篇文章主要介绍JAVA的GUI编程04——Swing(JFrame框架窗体、Jlable和Container)一、常用窗体 ,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

一、常用窗体

1. JFrame框架窗体

public class TestJFrame {


    public void init(){
        JFrame jframe = new JFrame("Jframe窗体");
        jframe.setBackground(Color.blue);
        jframe.setBounds(200,200,500,500);
        jframe.setVisible(true);

        jframe.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);//关闭窗体
    }

    public static void main(String[] args) {
        new TestJFrame().init();
    }
}
常用的窗体关闭方式有四种:
  • “DO_NOTHING_ON_CLOSE” :什么也不做就将窗体关闭;
  • “DISPOSE_ON_CLOSE” :任何注册监听程序对象后会自动隐藏并释放窗体;
  • “HIDE_ON_CLOSE” : 隐藏窗口的默认窗口关闭;
  • “EXIT_ON_CLOSE”:退出应用程序默认窗口关闭。

2、Jlable和Container

public class TestJFrame extends JFrame{

    public void init(){

        setBackground(Color.blue);

        setBounds(200,200,500,500);
        setVisible(true);

        setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);

        JLabel label = new JLabel("这是一个标签");

        label.setHorizontalAlignment(SwingConstants.CENTER);//设置标签居中

        add(label);

        Container contentPane = this.getContentPane();//获得容器

        contentPane.add(label);
        contentPane.setVisible(true);
        contentPane.setBackground(Color.red);

    }

    public static void main(String[] args) {
        new TestJFrame().init();
    }
}

最后

以上就是执着摩托为你收集整理的JAVA的GUI编程04——Swing(JFrame框架窗体、Jlable和Container)一、常用窗体 的全部内容,希望文章能够帮你解决JAVA的GUI编程04——Swing(JFrame框架窗体、Jlable和Container)一、常用窗体 所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(43)

评论列表共有 0 条评论

立即
投稿
返回
顶部