FluentUI/example/qml/window/SingleTaskWindow.qml

22 lines
388 B
QML
Raw Normal View History

2023-05-22 16:17:51 +08:00
import QtQuick
2023-04-13 18:10:38 +08:00
import QtQuick.Controls
import QtQuick.Layouts
import FluentUI
2023-05-19 07:57:23 +08:00
import "../component"
2023-04-13 18:10:38 +08:00
2023-05-19 07:57:23 +08:00
CustomWindow {
2023-04-13 18:10:38 +08:00
id:window
2023-04-22 18:08:11 +08:00
title:"SingleTask"
2023-04-13 18:10:38 +08:00
width: 500
height: 600
2023-05-17 18:15:15 +08:00
fixSize: true
2023-04-13 18:10:38 +08:00
launchMode: FluWindow.SingleTask
FluText{
anchors.centerIn: parent
text:"我是一个SingleTask模式的窗口如果我存在我就激活窗口"
}
}