mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2025-02-09 00:05:39 +08:00
32 lines
368 B
QML
32 lines
368 B
QML
|
import QtQuick 2.15
|
|||
|
import QtQuick.Window 2.15
|
|||
|
import QtQuick.Layouts 1.15
|
|||
|
import FluentUI 1.0
|
|||
|
|
|||
|
Window {
|
|||
|
id:rootwindow
|
|||
|
visible: true
|
|||
|
width: 480
|
|||
|
height: 700
|
|||
|
|
|||
|
ColumnLayout{
|
|||
|
spacing: 5
|
|||
|
|
|||
|
FluentUI{
|
|||
|
width: 20
|
|||
|
height: 20
|
|||
|
}
|
|||
|
|
|||
|
StandardButton{
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
FilledButton{
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
}
|