Skip to content
Snippets Groups Projects
Commit 76f3ae34 authored by Kaj Koivunen's avatar Kaj Koivunen :coffee:
Browse files

alkua projektin luonnille

parent b7ed727f
No related branches found
No related tags found
No related merge requests found
package guru.kake.ronove
import javafx.scene.paint.Color
import tornadofx.*
class ProjectSettings : View("Ronove") {
override val root = vbox {
val numbers = (1..10).toList()
datagrid(numbers) {
cellHeight = 75.0
cellWidth = 75.0
multiSelect = true
cellCache {
stackpane {
circle(radius = 25.0) {
}
label(it.toString())
}
}
}
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment