Commit 1ae28781 authored by 9831111's avatar 9831111 🙂

Add settingButton Action Listener.

parent 725f8c64
......@@ -74,6 +74,12 @@ public class MainFrame extends JFrame {
new LoginFrame();
}
}
class SettingButtonAction implements ActionListener {
@Override
public void actionPerformed(ActionEvent e) {
new SettingFrame();
}
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment