Added UI test file and corresponding javax.swing library
Prashant Jha prashant.kumarjha63@gmail.com
Sat, 30 Mar 2019 10:38:13 +0530
2 files changed,
17 insertions(+),
0 deletions(-)
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); + + } +} +