Swing_Simple_Base_Program_S.../CustomJPanel/Main.java
2024-11-16 11:12:12 -05:00

16 lines
298 B
Java

package CustomJPanel;
import javax.swing.JFrame;
public class Main {
public static void main(String[] args) {
JFrame jframe = new JFrame("My Custom JPanel Counter GUI");
jframe.setSize(300, 200);
jframe.add(new MyJPanel());
jframe.setVisible(true);
}
}