📄 pushbutton.scala
字号:
package scala.swingimport javax.swing._import event._/** * @see javax.swing.JButton */class PushButton(override val peer: JButton) extends Button(peer) with Publisher { def this(txt: String) = this(new JButton(txt)) def this() = this("") def this(a: Action) = { this("") action = a }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -