20 lines
595 B
Java
20 lines
595 B
Java
|
|
//import java.awt.*;
|
|
//import java.awt.event.*;
|
|
import javax.swing.*;
|
|
|
|
class gui {
|
|
public static void main(String args[]) {
|
|
JFrame frame = new JFrame("My First GUI");
|
|
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
|
|
frame.setSize(600, 300);
|
|
JButton button1 = new JButton("Button 1");
|
|
button1.setBounds(150, 150, 100, 70);
|
|
JButton button2 = new JButton("Button 2");
|
|
button2.setBounds(300, 150, 100, 70);
|
|
frame.add(button1);
|
|
frame.add(button2);
|
|
frame.setLayout(null);
|
|
frame.setVisible(true);
|
|
}
|
|
} |