java Swing第2集:向JFrame添加组件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java Swing第2集:向JFrame添加组件相关的知识,希望对你有一定的参考价值。

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

public class Main {

    public static void main(String[] args) {

        JFrame frame = new JFrame("Episode 2");
        frame.setLocation(400,400);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        //Get a variable reference of the content pane, the main container of components in your window
        Container content = frame.getContentPane();

        //Make a button component
        JButton helloButton = new JButton("hello man");
        JButton imCoolButton = new JButton("Im Cool");

        //Add the button to the content pane
        content.add(helloButton);
        content.add(imCoolButton);

        //Auto-sizes it for us, based on the components we add
        frame.pack();

        //Dont forget this like I just did
        frame.setVisible(true);

        //episode 2 done lil boi(or gurl)
    }
}

以上是关于java Swing第2集:向JFrame添加组件的主要内容,如果未能解决你的问题,请参考以下文章

《Java Swing》第2节:窗体的创建

java swing编程问题:一个jframe中添加一个jpanel后,为jpanel添加一个滚动条,当jpanel中内容过多时滑动

《Java Swing》第3节:布局管理器

JFrame 移除组件

java形式的未修饰jframe中的Java相对定位swing组件

创建第一个界面程序