mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-23 03:10:10 +08:00
22 lines
414 B
QML
22 lines
414 B
QML
import QtQuick 2.15
|
|
import QtQuick.Controls 2.15
|
|
import QtQuick.Layouts 1.15
|
|
import FluentUI 1.0
|
|
import "../component"
|
|
|
|
FluWindow {
|
|
|
|
id: window
|
|
title: qsTr("SingleTask")
|
|
width: 500
|
|
height: 600
|
|
fixSize: true
|
|
launchMode: FluWindowType.SingleTask
|
|
|
|
FluText{
|
|
anchors.centerIn: parent
|
|
text: qsTr("I'm a SingleTask mode window, and if I exist, I activate the window")
|
|
}
|
|
|
|
}
|