Tuesday, August 25, 2026 Why must I be missing my dad today of all days? I don’t get it. I’m not sure I want to understand it. Life doesn’t make sense when I miss my dad. I need his guidance and wisdom around me. Without it? I feel lost and that’s only half the story. We had a great relationship growing up, he was my mentor, my super hero. The one I looked to whenever I had a problem. When things went well I let him know, when things went badly, I let him know. He was my hero. Correction: He IS my hero! Dad if you can hear me? I love you.
A frame is a window for your application. It is the basic part and ground where your Swing application lives.
import javax.swing.JFrame;
public class Frame {
public static void main(String[] args) {
JFrame frame = new JFrame();
frame.setSize(400,400);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
}
}
Comments
Post a Comment