mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-01 08:31:33 +08:00
32 lines
534 B
QML
32 lines
534 B
QML
|
import QtQuick
|
|||
|
import QtQuick.Controls
|
|||
|
import QtQuick.Layouts
|
|||
|
import FluentUI
|
|||
|
|
|||
|
FluWindow {
|
|||
|
|
|||
|
id:window
|
|||
|
|
|||
|
width: 500
|
|||
|
height: 600
|
|||
|
minimumWidth: 500
|
|||
|
minimumHeight: 600
|
|||
|
maximumWidth: 500
|
|||
|
maximumHeight: 600
|
|||
|
launchMode: FluWindow.SingleTask
|
|||
|
|
|||
|
title:"SingleTask"
|
|||
|
|
|||
|
FluAppBar{
|
|||
|
id:appbar
|
|||
|
title:"SingleTask"
|
|||
|
width:parent.width
|
|||
|
}
|
|||
|
|
|||
|
FluText{
|
|||
|
anchors.centerIn: parent
|
|||
|
text:"我是一个SingleTask模式的窗口,如果我存在,我就激活窗口"
|
|||
|
}
|
|||
|
|
|||
|
}
|