radiobutton.scala
来自「JAVA 语言的函数式编程扩展」· SCALA 代码 · 共 11 行
SCALA
11 行
package scala.swingimport javax.swing._/** * @see javax.swing.JRadioButton */class RadioButton(override val peer: JRadioButton) extends ToggleButton(peer) { def this(text: String) = this(new JRadioButton(text)) def this() = this(new JRadioButton)}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?