如何在其Action Listener中获取JButton的值?
我将解释这个场景: 我创建了JButton并设置了它的属性
cDelete.setValue("Delete1");
cDelete.setText("DELETE");
在其ActionListener中,
if(e.getActionCommand().contains("DELETE"))
{
// get the value of invoked button i.e,: Delete1
}
在我尝试e.getActionCommand()
时,我收到了按钮中的文字:DELETE
。
我想获得Delete1
。