All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.marid.fx.control.ToolButton.kt Maven / Gradle / Ivy

There is a newer version: 0.9.8.10
Show newest version
package org.marid.fx.control

import javafx.scene.Node
import javafx.scene.control.Button

open class ToolButton : Button {
  constructor(): super()
  constructor(text: String?): super(text)
  constructor(text: String?, graphic: Node?): super(text, graphic)

  init {
    isFocusTraversable = false
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy