mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-01 16:41:30 +08:00
26 lines
494 B
QML
26 lines
494 B
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
import FluentUI
|
|
import example
|
|
import "qrc:///example/qml/component"
|
|
|
|
CustomWindow {
|
|
|
|
id:window
|
|
width: 800
|
|
height: 600
|
|
minimumWidth: 520
|
|
minimumHeight: 200
|
|
launchMode: FluWindowType.SingleInstance
|
|
onInitArgument:
|
|
(arg)=>{
|
|
window.title = arg.title
|
|
loader.setSource( arg.url,{animDisabled:true})
|
|
}
|
|
Loader{
|
|
id: loader
|
|
anchors.fill: parent
|
|
}
|
|
}
|