TornadoFX透明视图

时间:2019-01-29 10:27:46

标签: tornadofx

我想创建一个具有部分透明背景的视图(舞台,窗口)。我有一幅包含Alpha通道的图像

an image containing alpha channel

我在JavaFx中使用了这种场景,我必须将场景填充设置为null,并将根节点背景色设置为透明。我用TornadoFX尝试了同样的方法:

class NextRoundView : View("Következő kör") {

    override val root = vbox {
        style {
            backgroundColor = multi(Color.TRANSPARENT)
            backgroundImage = multi(URI.create("/common/rope-bg-500x300.png"))
            backgroundRepeat = multi(BackgroundRepeat.NO_REPEAT 
                                  to BackgroundRepeat.NO_REPEAT)
        }
        prefWidth = 500.0
        prefHeight = 300.0

        spacing = 20.0
        padding = insets(50, 20)
        text("A text") {
            font = Font.font(40.0)
            alignment = Pos.CENTER
        }

        button("OK")
        {
            font = Font.font(20.0)
            action {
                close()
            }
        }
        sceneProperty().addListener{ _,_,n ->
            n.fill = null
        }
    }

}

我这样称呼视图:

NextRoundView().apply { 
    openModal(stageStyle = StageStyle.TRANSPARENT, block = true) 
}

但是,舞台仍然具有背景:

enter image description here

我错过了什么?

1 个答案:

答案 0 :(得分:2)

您犯了几个错误导致此错误。首先,您绝不能手动实例化UICompoenents(视图,片段)。这样做会使他们错过重要的生命周期回调。一个重要的回调是onDock,它是操纵分配的场景的理想场所。更改这两个问题并清理一些语法会导致这段代码,成功地使背景透明:

class MyApp : App(MyView::class)

class MyView : View() {
    override val root = stackpane {
        button("open").action {
            find<NextRoundView>().openModal(stageStyle = StageStyle.TRANSPARENT, block = true)
        }
    }
}

class NextRoundView : View("Következő kör") {
    override val root = vbox {
        style {
            backgroundColor += Color.TRANSPARENT
            backgroundImage += URI.create("/common/rope-bg-500x300.png")
            backgroundRepeat += BackgroundRepeat.NO_REPEAT to BackgroundRepeat.NO_REPEAT
        }
        prefWidth = 500.0
        prefHeight = 300.0

        spacing = 20.0
        padding = insets(50, 20)
        text("A text") {
            font = Font.font(40.0)
            alignment = Pos.CENTER
        }

        button("OK") {
            font = Font.font(20.0)
            action {
                close()
            }
        }
    }

    override fun onDock() {
        currentStage?.scene?.fill = null
    }
}

这是应用程序的屏幕截图,其中包含已实现的更改:

enter image description here