Advertisement
Guest User

Untitled

a guest
Mar 26th, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. import javax.swing.JFrame;
  2.  
  3. public class ComboBoxTest{
  4.  
  5. public static void main(String [] args){
  6.  
  7. ComboBoxFrame comboBoxFrame = new ComboBoxFrame();
  8. comboBoxFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  9. comboBoxFrame.setSize(350,150);
  10. comboBoxFrame.setVisible(true);
  11.  
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement