15 lines
151 B
QML
15 lines
151 B
QML
|
import QtQuick
|
|||
|
import FluentUI
|
|||
|
|
|||
|
Window {
|
|||
|
id:window
|
|||
|
width: 400
|
|||
|
height: 400
|
|||
|
visible: true
|
|||
|
|
|||
|
FluButton{
|
|||
|
text:"123"
|
|||
|
}
|
|||
|
|
|||
|
}
|