2009년 7월 2일 목요일

window close

public class ....    extends Frame
{
....
{
addWindowListener(new WinEventHandler());
}

class WinEventHandler extends WindowAdapter
{
public void windowClosing(WindowEvent e)
{
System.out.println(e);
System.exit(0);
}
}
}

댓글 없음:

댓글 쓰기