FluentUI/Gallery/res/qml/window/NewFolderWindow.qml
yxdy ff15075c79
Some checks are pending
Gallery App Build / macOS (push) Waiting to run
Gallery App Build / Windows (push) Waiting to run
Gallery App Build / Ubuntu (push) Waiting to run
修改样式
2025-03-07 16:23:09 +08:00

30 lines
797 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: 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")
}