qml - "吐司"喜欢褪色的消息框

时间:2018-01-23 16:42:41

标签: qt qml toast qtquickcontrols2

是否已经有类似于android" toast" qml的消息弹出消息?我当然可以自己创造一些东西,但我会假设/希望已经有类似Qt / QtQuickControls2提供的东西

1 个答案:

答案 0 :(得分:1)

ToolTip。使用材质样式时,它的样式就像“吐司”。

import QtQuick 2.9
import QtQuick.Controls 2.2

ApplicationWindow {
    width: 360
    height: 520
    visible: true

    Button {
        text: "Button"
        anchors.centerIn: parent

        ToolTip.text: "ToolTip"
        ToolTip.visible: pressed
        ToolTip.timeout: 3000
        ToolTip.delay: 500
    }
}

enter image description here