0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Javaで「パネルにラベルやボタンなどのコンポーネントを追加する」の動作を確認してみた。

Posted at

概要

Javaで「パネルにラベルやボタンなどのコンポーネントを追加する」の動作を確認してみました。
以下のページを参考にしました。

実装

以下のファイルを作成しました。

Sample.java
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JButton;
import java.awt.BorderLayout;

class Sample extends JFrame{
  public static void main(String args[]){
    Sample frame = new Sample("MyTitle");
    frame.setVisible(true);
  }

  Sample(String title){
    setTitle(title);
    setBounds(100, 100, 728, 400);
    setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

    JPanel panel = new JPanel();

    JButton button1 = new JButton("Open");
    JButton button2 = new JButton("Cancel");
    JButton button3 = new JButton("Help");

    panel.add(button1);
    panel.add(button2);
    panel.add(button3);

    add(panel, BorderLayout.CENTER);
  }
}

以下のコマンドを実行しました。

$ javac Sample.java 
$ java Sample

まとめ

何かの役に立てばと。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?