FluentUI/Gallery/res/qml/window/SimTransportWindow.qml
yxdy 8d68f26b15
Some checks failed
Gallery App Build / Windows (push) Has been cancelled
Gallery App Build / macOS (push) Has been cancelled
Gallery App Build / Ubuntu (push) Has been cancelled
feat: 添加功能
2025-02-15 18:06:24 +08:00

28 lines
592 B
QML

import QtQuick
import QtQuick.Layouts
import QtQuick.Controls
import FluentUI.Controls
import FluentUI.impl
import Gallery
FramelessWindow {
property var argument
id: window
title: "整体运输仿真"
width: 600
height: 500
fixSize: true
visible: true
launchMode: WindowType.Standard
windowEffect: Global.windowEffect
onInit:
(arg)=>{
argument = arg
}
onNewInit:
(arg)=>{
argument = arg
}
initialItem: R.resolvedUrl("res/qml/screen/SimTransportScreen.qml")
}