14 lines
183 B
QML
14 lines
183 B
QML
|
import QtQuick
|
||
|
import QtQuick.Controls
|
||
|
|
||
|
ApplicationWindow {
|
||
|
width: 400
|
||
|
height: 400
|
||
|
visible: true
|
||
|
|
||
|
Button {
|
||
|
id: button
|
||
|
text: "A Special Button"
|
||
|
}
|
||
|
}
|