all repos — tmdb-desktop-client @ ddabd8918c11f4fb126881273ff2b01c2c273e04

A simple tmdb desktop client written in Java

testUI.java

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
import javax.swing.*;

public class testUI {

    public static void main(String [] args){

    JFrame f1=new JFrame();
    JButton b1=new JButton("BEGIN");
    b1.setBounds(230,200,100,40);
    f1.add(b1);
    f1.setSize(400,500);
    f1.setLayout(null);
    f1.setVisible(true);

    }
}