SwingDemos/src/RandomStrings.java
2023-10-07 18:56:09 -04:00

15 lines
428 B
Java

import javax.swing.JFrame;
public class RandomStrings {
public static void main(String[] args) {
JFrame window = new JFrame("Java!");
RandomStringsPanel content = new RandomStringsPanel();
window.setContentPane(content);
window.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
window.setLocation(120,70);
window.setSize(350,250);
window.setVisible(true);
}
}