FluentUI/Gallery/res/qml/window/NewProjectWindow.qml
yxdy a44db97aa3
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
init
2025-02-12 10:31:20 +08:00

28 lines
584 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: 400
height: 300
fixSize: true
visible: true
launchMode: WindowType.Standard
windowEffect: Global.windowEffect
onInit:
(arg)=>{
argument = arg
}
onNewInit:
(arg)=>{
argument = arg
}
initialItem: R.resolvedUrl("res/qml/screen/NewProjectScreen.qml")
}