orangy
imageview
calls attachTo
which calls cryptic opcr
.abhinay
07/30/2018, 6:24 PMimageview()
used by orangy looks like an extension functionorangy
edvin
07/31/2018, 8:30 AMRoman
07/31/2018, 9:40 AMcarlw
07/31/2018, 1:23 PMcarlw
07/31/2018, 6:09 PMwakingrufus
07/31/2018, 7:03 PMProperty delegate must have a 'setValue(AuthRequest, KProperty<*>, [ERROR : Type from delegate])' method. None of the following functions is suitable:
did something change in how these work?anidotnet
08/01/2018, 6:54 AMclass MainView : View("Hello TornadoFX") {
override val root = hbox {
label(title) {
addClass(Styles.heading)
}
button ("Second View") {
setOnAction {
find<SecondaryView>().openWindow(StageStyle.DECORATED)
}
}
}
override fun onDock() {
super.onDock()
currentStage!!.setOnShown {
println("MainView $it")
}
}
}
class SecondaryView : View("Hello Secondary View") {
override val root = hbox {
label(title) {
addClass(Styles.heading)
}
}
override fun onDock() {
super.onDock()
currentStage!!.setOnShown {
println("Secondary $it")
}
}
}
Any idea why I can't listen to stage shown event for other stages?carlw
08/03/2018, 11:47 AMRob
08/03/2018, 3:14 PMNico Smeenk
08/04/2018, 11:45 AMiLobanov
08/04/2018, 1:41 PMamanda.hinchman-dominguez
08/05/2018, 3:12 AMHamza
08/05/2018, 3:21 AMiLobanov
08/05/2018, 5:13 AMcarlw
08/06/2018, 1:32 PMcarlw
08/06/2018, 7:06 PMRoman
08/13/2018, 9:44 AMcarlw
08/15/2018, 7:01 PMcarlw
08/16/2018, 2:19 PMBoyong
08/16/2018, 5:36 PMedvin
08/19/2018, 3:27 PMedvin
08/20/2018, 11:56 AMSiebelsTim
08/22/2018, 11:57 AMamanda.hinchman-dominguez
08/22/2018, 2:52 PMcarlw
08/23/2018, 2:02 PMedvin
08/24/2018, 7:22 AMamanda.hinchman-dominguez
08/24/2018, 7:30 PMRuckus
08/25/2018, 11:12 PMImportant: TornadoFX is not yet compatible with Java 9/10