dotherside/Nim/main.qml

20 lines
267 B
QML
Raw Normal View History

2014-12-01 21:02:33 +01:00
import QtQuick 2.2
import QtQuick.Controls 1.2
import QtQuick.Window 2.1
ApplicationWindow
{
width: 400
height: 300
2014-12-08 12:55:09 +01:00
Component.onCompleted: {
visible = true
myObject.myVoidSlot(10)
}
2014-12-01 21:02:33 +01:00
Button
{
anchors.centerIn: parent
text: "Click Me"
}
}