all repos — tmdb-desktop-client @ f0e24f2e30bcfec734462797e0836bd18b54cf3e

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);

    }
}