如何从单击按钮的代码中进行调用?
我在代码中为 JToggleButton
实现了 ActionListener
。如何从单击按钮的代码中进行调用? (与代码中的 javascript 类似,我可以执行 $('button').click();
) 如何在 Java 中做到这一点?
I have in code implement ActionListener
for JToggleButton
. How to call from code like that button clicked? (similar in javascript from code I can do $('button').click();
)
How to do this in Java?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
对于
JButton
,我们有button.doClick()
,继承自AbstractButton
。因此,我们也应该为JToggleButton()
使用doClick()
,因为它也是从AbstractButton
派生的。For
JButton
we havebutton.doClick()
, inherited fromAbstractButton
. So, we should havedoClick()
forJToggleButton()
as well, since that is also derived fromAbstractButton
.这可能有用... http://zetcode.com/tutorials/javaswingtutorial/swingevents/
This might be useful... http://zetcode.com/tutorials/javaswingtutorial/swingevents/
您必须阅读 JButton 和 ActionListener ,示例 此处 和 此处 com/Tutorial/Java/0260__Swing-Event/0080__ActionListener.htm" rel="nofollow">此处
you have to reads basic tutorial for JButton and ActionListener , examples for that here and here