Reputation: 8066
I am transferring one of my Delphi project to QT
When I do GUI design, there is no button control in qml types
or I have to add button using code?
Button {
//...
}
Your comment welcome
Upvotes: 1
Views: 1358
Reputation: 3259
You should add import statement to qml
file:
import QtQuick.Controls 1.1
Upvotes: 1