FluentUI/example/qml/window/SingleTaskWindow.qml

22 lines
414 B
QML
Raw Normal View History

2023-08-24 15:50:37 +08:00
import QtQuick 2.15
import QtQuick.Controls 2.15
import QtQuick.Layouts 1.15
import FluentUI 1.0
2023-08-26 17:20:30 +08:00
import "../component"
2023-04-13 18:10:38 +08:00
2023-10-08 19:48:32 +08:00
FluWindow {
2023-04-13 18:10:38 +08:00
2024-03-09 15:35:48 +08:00
id: window
title: qsTr("SingleTask")
2023-04-13 18:10:38 +08:00
width: 500
height: 600
2023-05-17 18:15:15 +08:00
fixSize: true
2023-07-18 18:24:06 +08:00
launchMode: FluWindowType.SingleTask
2023-04-13 18:10:38 +08:00
FluText{
anchors.centerIn: parent
2024-03-09 15:35:48 +08:00
text: qsTr("I'm a SingleTask mode window, and if I exist, I activate the window")
2023-04-13 18:10:38 +08:00
}
}