调用禁用的JButton的actionlistener

时间:2013-07-29 11:19:00

标签: java swing events jbutton actionlistener

我正在处理一些我需要从另一个函数调用已禁用actionlistner的{​​{1}}的内容。怎么做?

2 个答案:

答案 0 :(得分:5)

创建一个将由禁用的jbutton调用的新方法,编写将在单击按钮时执行的所有代码。您无法以其他方式拨打actionlistiner

...
JButton disButton = new JButton("Disabled");
disButton.addActionListener(new ActionListener() {
  @Override
  public void actionPerformed(ActionEvent arg0) {
    //do not write any statement here
    doSomething();
  }
});

...
private void doSomething() {
  //all action event execution code here
  System.out.println("I am in the action listener");
}

....

//in  the other method or another button click event call doSomething()
//even button is disables like
JButton Button = new JButton("Submit");
Button.addActionListener(new ActionListener() {
  @Override
  public void actionPerformed(ActionEvent arg0) {
    doSomething();
  }
});

//or from another method
public void method() {
  doSomething();
}

答案 1 :(得分:4)

您无法actions GUI控件上调用/ disabled。这实际上是disable的含义

您可以做的是创建一个单独的常用方法,例如doClick(),并在您需要的地方打电话。