all repos — tmdb-desktop-client @ ddabd8918c11f4fb126881273ff2b01c2c273e04

A simple tmdb desktop client written in Java

Added UI test file and corresponding javax.swing library
Prashant Jha prashant.kumarjha63@gmail.com
Sat, 30 Mar 2019 10:38:13 +0530
commit

ddabd8918c11f4fb126881273ff2b01c2c273e04

parent

a7a3174fdfdf6e9ae41158375a2844a05a6207c7

2 files changed, 17 insertions(+), 0 deletions(-)

jump to
A testUI.java

@@ -0,0 +1,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); + + } +} +