Skip to content

Instantly share code, notes, and snippets.

@uncoded-ro
Last active June 14, 2022 07:24
Show Gist options
  • Save uncoded-ro/de998740b5eace88ec99d4eb85cbefd2 to your computer and use it in GitHub Desktop.
Save uncoded-ro/de998740b5eace88ec99d4eb85cbefd2 to your computer and use it in GitHub Desktop.
package ro.virtualcampus.gui;
import javax.swing.*;
public class ButtonApp extends JFrame {
private static final long serialVersionUID = 1L;
public ButtonApp() {
super("Button");
}
public static void main(String args[]) {
ButtonApp app = new ButtonApp();
ButtonPanel bp = new ButtonPanel();
app.add(bp);
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