This commit is contained in:
zhuzichu
2023-08-16 18:05:49 +08:00
parent 1b72b840d6
commit ec9a9a5074
7 changed files with 203 additions and 1 deletions

View File

@ -0,0 +1,33 @@
import QtQuick
import QtQuick.Layouts
import QtQuick.Window
import QtQuick.Controls
import FluentUI
import "qrc:///example/qml/component"
FluScrollablePage{
title:"Screenshot"
FluArea{
Layout.fillWidth: true
height: 100
paddings: 10
Layout.topMargin: 20
FluFilledButton{
anchors{
top: parent.top
topMargin: 14
}
text:"Open Screenshot"
onClicked: {
screenshot.open()
}
}
}
FluScreenshot{
id:screenshot
}
}