📄 radiobutton.scala
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -