📄 mybutton.java
字号:
import java.awt.Button;import java.awt.event.ActionListener;import java.awt.TextField;import java.awt.Color;import com.sun.java.swing.*;//This class extends Button to add the ActionListenerpublic class MyButton extends JButton { //Constructors public MyButton (String label) { super (label); } public MyButton (String label, ActionListener a) { super (label); this.addActionListener (a); } public MyButton (String label, String text, ActionListener a) { super (label); this.addActionListener (a); this.setToolTipText (text); } public MyButton (String label, String text, Icon icon, ActionListener a) { super (label, icon); this.addActionListener (a); this.setToolTipText (text); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -