Skip to content

Instantly share code, notes, and snippets.

@klg71
Last active March 19, 2019 17:10
Show Gist options
  • Save klg71/32e5faf70d8b019c51df538b51c04a3f to your computer and use it in GitHub Desktop.
Save klg71/32e5faf70d8b019c51df538b51c04a3f to your computer and use it in GitHub Desktop.
package de.klg71.calculator;
import javax.swing.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
public class GrafikMainStart {
public static void main(String... args) {
final GrafikMainStart main = new GrafikMainStart();
main.run();
}
private void run() {
// Fenster erstellen
JFrame frame = new JFrame("Taschenrechner");
JPanel panel = new JPanel();
frame.setSize(600, 100);
frame.setVisible(true);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment