mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-10-31 08:09:33 +08:00
28 lines
491 B
QML
28 lines
491 B
QML
|
import QtQuick 2.15
|
|||
|
import QtQuick.Layouts 1.15
|
|||
|
import QtQuick.Window 2.15
|
|||
|
import QtQuick.Controls 2.15
|
|||
|
import QtGraphicalEffects 1.15
|
|||
|
import FluentUI 1.0
|
|||
|
|
|||
|
Item {
|
|||
|
FluText{
|
|||
|
id:title
|
|||
|
text:"TreeView"
|
|||
|
fontStyle: FluText.TitleLarge
|
|||
|
}
|
|||
|
FluTreeView{
|
|||
|
id:tree_view
|
|||
|
width:100
|
|||
|
anchors{
|
|||
|
top:title.bottom
|
|||
|
left:parent.left
|
|||
|
bottom:parent.bottom
|
|||
|
}
|
|||
|
Component.onCompleted: {
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
}
|