import java.awt.event.*;
import javax.swing.*;
public class ImageButton{
ImageButton(){
JFrame f=new JFrame();
JButton b=new JButton("ABC");
b.setBounds(130,100,100, 40);
f.setTitle("Button in Java");
f.add(b);
f.setSize(300,400);
f.setLayout(null);
f.setVisible(true);
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
public static void main(String[] args) {
new ImageButton();
}
}
No comments:
Post a Comment