mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-23 19:20:59 +08:00
22 lines
395 B
QML
22 lines
395 B
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
import FluentUI
|
|
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")
|
|
}
|
|
|
|
}
|