0
私はKornのTornadoFXの基礎を勉強しています。 私はこのコードを持っている:ボタンが押されたときにKotlin TornadoFXでdatepickerの日付を取得
class MainView : View() {
override val root = vbox()
init {
with(root) {
datepicker {
value = LocalDate.now()
}
button("Choose date") {
textFill = Color.GREEN
action {
println("Button pressed!")
}
}
}
}
}
、私は、ユーザーが選択した日付を利用したいと思います。
どうすればいいですか?
class MainView : View() {
private val dateProperty = SimpleObjectProperty<LocalDate>()
override val root = vbox()
init {
with(root) {
datepicker(dateProperty) {
value = LocalDate.now()
}
button("Choose date") {
textFill = Color.GREEN
action {
val dateValue = dateProperty.value
println("Button pressed!")
}
}
}
}
}
他のソリューションは、あなたのクラスでDatePicker
インスタンスを持っているだろうし、それから値を取る、:
はどうもありがとうございました!!! – matteo