mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-01 00:27:32 +08:00
31 lines
527 B
QML
31 lines
527 B
QML
|
import QtQuick
|
||
|
import QtQuick.Controls
|
||
|
import QtQuick.Layouts
|
||
|
import QtQuick.Window
|
||
|
import FluentUI
|
||
|
import "qrc:///example/qml/component"
|
||
|
|
||
|
FluScrollablePage{
|
||
|
|
||
|
title:"ShortcutPicker"
|
||
|
|
||
|
FluArea{
|
||
|
Layout.fillWidth: true
|
||
|
Layout.topMargin: 20
|
||
|
height: 100
|
||
|
paddings: 10
|
||
|
FluShortcutPicker{
|
||
|
anchors.verticalCenter: parent.verticalCenter
|
||
|
}
|
||
|
}
|
||
|
CodeExpander{
|
||
|
Layout.fillWidth: true
|
||
|
Layout.topMargin: -1
|
||
|
code:'FluShortcutPicker{
|
||
|
|
||
|
}'
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|