mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-01 08:31:33 +08:00
22 lines
385 B
QML
22 lines
385 B
QML
import QtQuick
|
||
import QtQuick.Controls
|
||
import QtQuick.Layouts
|
||
import FluentUI
|
||
import "../component"
|
||
|
||
CustomWindow {
|
||
|
||
id:window
|
||
title:"Standard"
|
||
width: 500
|
||
height: 600
|
||
fixSize: true
|
||
launchMode: FluWindow.Standard
|
||
|
||
FluText{
|
||
anchors.centerIn: parent
|
||
text:"我是一个Standard模式的窗口,每次我都会创建一个新的窗口"
|
||
}
|
||
|
||
}
|