คอนสตรัคเตอร์
myFrame1(){
initFrame();
}
initFrame();
}
code สร้าง Frame
void initFrame(){
int sx,sy;
sx=500; sy=500;
setSize(sx,sy);
setLocation(40,40);
setVisible(true);
setTitle("test1");
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
int sx,sy;
sx=500; sy=500;
setSize(sx,sy);
setLocation(40,40);
setVisible(true);
setTitle("test1");
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
ห้ามลืมเด็ดขาด
public static void main(String[] args) {
// TODO Auto-generated method stub
new myFrame1();
}
// TODO Auto-generated method stub
new myFrame1();
}
ความคิดเห็น
แสดงความคิดเห็น