SuperVCD管理系统 完整代码,带各种注释,可以拿这个项目入门。
} /** * 退出方法. */ public void exit() { } setVisible(false); dispose(); System.exit(0); /** * "退出"事件处理内部类. */ class ExitActionListener implements ActionListener { public void actionPerformed(ActionEvent event) { exit(); } } /** * "关闭窗口"事件处理内部类. */ class WindowCloser extends WindowAdapter { } /** * let's call our exit() method defined above */ public void windowClosing(WindowEvent e) { } exit(); /** * "外观"选择监听类 * */ class LookAndFeelListener implements ActionListener {