Hi! This is Milan kumar and this for my channel Khud bano Tricky.https://www.youtube.com/watch?v=tdQJAyeKVEI
KBT
KHUD BANO TRICKY milan
Friday, October 19, 2018
Wednesday, July 4, 2018
MyFirstPost
- import javax.swing.*;
- public class Simple {
- JFrame f;
- Simple(){
- f=new JFrame();//creating instance of JFrame
- JButton b=new JButton("click");//creating instance of JButton
- b.setBounds(130,100,100, 40);
- f.add(b);//adding button in JFrame
- f.setSize(400,500);//400 width and 500 height
- f.setLayout(null);//using no layout managers
- f.setVisible(true);//making the frame visible
- }
- public static void main(String[] args) {
- new Simple();
- }
- }
Subscribe to:
Comments (Atom)
Hi! This is Milan kumar and this for my channel Khud bano Tricky. https://www.youtube.com/watch?v=tdQJAyeKVEI
-
Hi! This is Milan kumar and this for my channel Khud bano Tricky. https://www.youtube.com/watch?v=tdQJAyeKVEI
-
import javax.swing.*; public class Simple { JFrame f; Simple(){ f= new JFrame(); //creating instance of JFrame JB...