FluentUI/example/qml/page/T_ShortcutPicker.qml

31 lines
529 B
QML
Raw Normal View History

2023-12-02 23:04:02 +08:00
import QtQuick 2.15
import QtQuick.Layouts 1.15
import QtQuick.Window 2.15
import QtQuick.Controls 2.15
import FluentUI 1.0
2024-01-25 17:26:50 +08:00
import "../component"
2023-12-02 23:04:02 +08:00
FluScrollablePage{
2024-03-09 15:35:48 +08:00
title: qsTr("ShortcutPicker")
2023-12-02 23:04:02 +08:00
FluArea{
Layout.fillWidth: true
2024-03-29 16:23:16 +08:00
Layout.preferredHeight: 100
padding: 10
2023-12-02 23:04:02 +08:00
FluShortcutPicker{
anchors.verticalCenter: parent.verticalCenter
}
}
CodeExpander{
Layout.fillWidth: true
2024-03-29 16:23:16 +08:00
Layout.topMargin: -6
2023-12-02 23:04:02 +08:00
code:'FluShortcutPicker{
}'
}
}
2024-03-09 18:26:54 +08:00