是否已经有类似于android" toast" qml的消息弹出消息?我当然可以自己创造一些东西,但我会假设/希望已经有类似Qt / QtQuickControls2提供的东西
答案 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
}
}