Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import javax.swing.*;
- public class frames{
- public static void main(String[] args){
- JFrame f1=new JFrame();
- JButton b1=new JButton("Login");
- JButton b2=new JButton("Reset");
- f1.setLayout(null);
- f1.setVisible(true);
- f1.setSize(400,500);
- b1.setBounds(100,50,150,30);
- b2.setBounds(100,100,150,30);
- f1.add(b1);
- f1.add(b2);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment