FluentUI/Gallery/res/qml/screen/MultiWindowScreen.qml
yxdy a44db97aa3
Some checks failed
Gallery App Build / Windows (push) Has been cancelled
Gallery App Build / macOS (push) Has been cancelled
Gallery App Build / Ubuntu (push) Has been cancelled
init
2025-02-12 10:31:20 +08:00

28 lines
502 B
QML

import QtQuick
import QtQuick.Layouts
import QtQuick.Window
import QtQuick.Controls
import FluentUI.Controls
import Gallery
Item {
property var argument: Window.window.argument
anchors.fill: parent
Label{
text: {
if(argument){
return JSON.stringify(argument)
}
return ""
}
anchors.centerIn: parent
TapHandler{
onTapped: {
WindowRouter.go("/")
}
}
}
}