gpt4 book ai didi

java - 如何在 GUI Jbutton 中链接新功能?

转载 作者:行者123 更新时间:2023-12-01 14:11:20 26 4
gpt4 key购买 nike

bhome = new JButton("Home");
bhome.setFont(font);
bhome.setFocusPainted(false);
bhome.setSize(100, 25);
bhome.setLocation(70, 30);
bhome.addActionListener(this);
panel.add(bhome);

这是我的 JButton,如何将新函数链接到它?就功能而言,我的意思是当您单击“主页”按钮时,它会将您定向到系统/程序的主页。

最佳答案

JButton bhome = new JButton("Home");
bhome.addActionListener(new HomeListener());

class HomeListener implements ActionListener {
public void actionPerformed(ActionEvent event) {
// Do whatever you want to do
}
}

关于java - 如何在 GUI Jbutton 中链接新功能?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18508115/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com