Advertisement
MUstar

IoT JAVA 0811 - TestGui.java

Aug 11th, 2017
257
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.23 KB | None | 0 0
  1. import java.awt.*;
  2. public class TestGui extends Frame {
  3.     public TestGui(){
  4.         super("마이윈도우");
  5.     }
  6.     public static void main(String args[]){
  7.         TestGui obj = new TestGui();
  8.         obj.setSize(800,600);
  9.         obj.setVisible(true);
  10.     }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement