28 lines
583 B
QML
28 lines
583 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: 200
|
|
fixSize: true
|
|
visible: true
|
|
launchMode: WindowType.Standard
|
|
windowEffect: Global.windowEffect
|
|
onInit:
|
|
(arg)=>{
|
|
argument = arg
|
|
}
|
|
onNewInit:
|
|
(arg)=>{
|
|
argument = arg
|
|
}
|
|
initialItem: R.resolvedUrl("res/qml/screen/NewFolderScreen.qml")
|
|
}
|