i have created a JFrame in netbeans. But when i run the program, the Jframe size is too small. here is my code.
import javax.swing.JFrame;
public class Window {
private static void demo()
{
JFrame frame =new JFrame();
frame.setVisible(true);
}
public static void main(String[] args) {
javax.swing.SwingUtilities.invokeLater(new Runnable(){
public void run()
{
demo();
}
});
}
}
pack()
. The frame will become the smallest size it needs to be, in order to display the components inside it. – Andrew Thompson