import QtQuick import QtQuick.Layouts import QtQuick.Controls import FluentUI.Controls import FluentUI.impl import Gallery FramelessWindow { property var argument id: window title: "新建目录" width: 500 height: 800 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") // initialItem: R.resolvedUrl("res/qml/component/SearchRoute.qml") initialItem: R.resolvedUrl("res/qml/component/RightCommon.qml") //RightMainIntro//R.resolvedUrl("res/qml/screen/NewFolderScreen.qml") }