为此,我在“开始”按钮的“ ActionPeformed(…)”方法中编写了以下代码
你需要的代码是在
actionPerformed(...)的
ActionListener使用开始按钮注册,而不是开始按钮本身。
您可以添加一个简单的
ActionListener如下:
JButton startButton = new JButton("Start");startButton.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent ae) { startButton.setEnabled(false); stopButton.setEnabled(true); } } );
请注意,
final如果要在本地范围内创建匿名侦听器,则上述示例中的startButton将需要在上面的示例中。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)