34 lines
671 B
QML
34 lines
671 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:"Dialog"
|
|||
|
fontStyle: FluText.TitleLarge
|
|||
|
}
|
|||
|
ScrollView{
|
|||
|
clip: true
|
|||
|
width: parent.width
|
|||
|
contentWidth: parent.width
|
|||
|
anchors{
|
|||
|
top: title.bottom
|
|||
|
bottom: parent.bottom
|
|||
|
}
|
|||
|
ColumnLayout{
|
|||
|
spacing: 5
|
|||
|
FluButton{
|
|||
|
Layout.topMargin: 20
|
|||
|
text:"Show Dialog"
|
|||
|
onClicked: {
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|