⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pushbutton.scala

📁 JAVA 语言的函数式编程扩展
💻 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 + -