2023-08-24 15:50:37 +08:00
|
|
|
|
import QtQuick 2.15
|
|
|
|
|
import QtQuick.Controls 2.15
|
|
|
|
|
import QtQuick.Layouts 1.15
|
|
|
|
|
import FluentUI 1.0
|
2023-06-12 16:46:02 +08:00
|
|
|
|
import "qrc:///example/qml/component"
|
2023-08-26 17:20:30 +08:00
|
|
|
|
import "../component"
|
2023-04-13 18:10:38 +08:00
|
|
|
|
|
2023-05-19 07:57:23 +08:00
|
|
|
|
CustomWindow {
|
2023-04-13 18:10:38 +08:00
|
|
|
|
|
|
|
|
|
id:window
|
2023-04-22 18:08:11 +08:00
|
|
|
|
title:"Standard"
|
2023-04-13 18:10:38 +08:00
|
|
|
|
width: 500
|
|
|
|
|
height: 600
|
2023-05-17 18:15:15 +08:00
|
|
|
|
fixSize: true
|
2023-07-18 18:24:06 +08:00
|
|
|
|
launchMode: FluWindowType.Standard
|
2023-04-13 18:10:38 +08:00
|
|
|
|
|
2023-06-18 13:56:30 +08:00
|
|
|
|
FluMenuBar {
|
|
|
|
|
FluMenu {
|
|
|
|
|
title: qsTr("File")
|
|
|
|
|
Action { text: qsTr("New...") }
|
|
|
|
|
Action { text: qsTr("Open...") }
|
|
|
|
|
Action { text: qsTr("Save") }
|
|
|
|
|
Action { text: qsTr("Save As...") }
|
|
|
|
|
FluMenuSeparator { }
|
|
|
|
|
Action { text: qsTr("Quit") }
|
|
|
|
|
}
|
|
|
|
|
FluMenu {
|
|
|
|
|
title: qsTr("Edit")
|
|
|
|
|
Action { text: qsTr("Cut") }
|
|
|
|
|
Action { text: qsTr("Copy") }
|
|
|
|
|
Action { text: qsTr("Paste") }
|
|
|
|
|
}
|
|
|
|
|
FluMenu {
|
|
|
|
|
title: qsTr("Help")
|
|
|
|
|
Action { text: qsTr("About") }
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-04-13 18:10:38 +08:00
|
|
|
|
FluText{
|
|
|
|
|
anchors.centerIn: parent
|
|
|
|
|
text:"我是一个Standard模式的窗口,每次我都会创建一个新的窗口"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|