mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-23 19:20:59 +08:00
34 lines
594 B
QML
34 lines
594 B
QML
|
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
|
||
|
}
|
||
|
}
|