importjavax.swing.*;importjava.awt.FlowLayout;classKW{publicstaticvoidmain(Stringargs[]){JPanelp=newJPanel();FlowLayoutfl=newFlowLayout();p.setLayout(fl);JLabell=newJLabel("Enter the name ");JTextFieldtf=newJTextField(10);p.add(l);p.add(tf);JFramef=newJFrame("Frame");f.setContentPane(p);f.setSize(300,300);f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);f.setVisible(true);}}
Dear User, Thank you for visitng KodingWindow. If you are interested in technical articles, latest technologies, and our journey further, please follow us on LinkedIn.