1
0
mirror of https://github.com/zhuzichu520/FluentUI.git synced 2025-03-11 22:47:30 +08:00

22 lines
405 B
QML
Raw Normal View History

2023-08-24 15:50:37 +08:00
import QtQuick
import QtQuick.Controls
import QtQuick.Layouts
import FluentUI
import "qrc:///example/qml/component"
2023-10-08 18:19:08 +08:00
FluWindow {
2023-08-24 15:50:37 +08:00
id:window
title:"SingleTask"
width: 500
height: 600
fixSize: true
launchMode: FluWindowType.SingleTask
FluText{
anchors.centerIn: parent
text:"我是一个SingleTask模式的窗口如果我存在我就激活窗口"
}
}