嗨,我想在按下 jdialog 的 ok 按钮时触发一些动作,我知道你可以这样做
int rep =JOptionPane.showConfirmDialog(null, pangesfac, "Gestion des chambres a facturer", JOptionPane.OK_CANCEL_OPTION, JOptionPane.PLAIN_MESSAGE);
if(rep == JOptionPane.OK_OPTION) {//actions to do}
但在我的情况下,我想要一个外部控制器来处理按下确定按钮时必须完成的事情(我的代码由 mvc 构成)。那么如何在确定按钮上设置一个动作监听器呢?