Nico Smeenk
09/28/2018, 5:32 PMimport tornadofx.*
class Test : App(TestView::class)
class TestView : View() {
override val root = pane {
tabpane {
tab(TestWizard::class)
}
}
}
class TestWizard : Wizard() {
init {
add(TestWizard1::class)
}
}
class TestWizard1 : View("Test") {
override val root = pane {}
}
My goal ist to close the tab on complete and not the full App.