JFrame.


import javax.swing.JFrame;

class swingFrame
{
public static void main(String args[])
{
JFrame jf = new JFrame("My Frame");
jf.setSize(250,250);
jf.setVisible(true);
jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
}

Popular posts from this blog

Jtable with database manually in netbeans.

Join in Kotlin coroutines