Skip to content

Instantly share code, notes, and snippets.

@uncoded-ro
Last active June 14, 2022 07:25
Show Gist options
  • Save uncoded-ro/2f7cb38602f4e5830c31a2100135aa98 to your computer and use it in GitHub Desktop.
Save uncoded-ro/2f7cb38602f4e5830c31a2100135aa98 to your computer and use it in GitHub Desktop.
package ro.virtualcampus.gui;
import javax.swing.*;
public class CheckBoxApp extends JFrame {
private static final long serialVersionUID = 1L;
public CheckBoxApp() {
super("CheckBox");
}
public static void main(String args[]) {
CheckBoxApp app = new CheckBoxApp();
CheckBoxPanel cbp = new CheckBoxPanel();
app.add(cbp);
app.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
app.pack();
app.setVisible(true);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment