在我的代码中,在一个类中,我正在尝试检查按钮是否已按下我的其他框架(类)。如果这是真的,那么将执行一些代码。但是,我找不到任何代码来检查按钮是否被按下。
这是我的代码:
editBanana bFrame = new editBanana();
String getLocation = bFrame.editLocationField.getText();
javax.swing.JButton saveButt = bFrame.saveEditButton;
...
...
//If button is pressed from my other form, then do this code
if (saveButt.getModel().isPressed())
{
System.out.println("Saved");
}
当我运行此代码并按下按钮时,此代码不起作用且没有任何反应。
我在想,因为这不起作用,它首先运行此代码,然后我按下按钮。因此,对于我单击我的按钮的代码,我只需再次调用主类,以便现在按下按钮迭代代码。但它仍然没有执行我的代码。
我应该使用哪些代码来查找我的按钮是否已被按下?
感谢。