import QtQuick import QtQuick.Controls ApplicationWindow { id: window visible: true width: 1280 height: 720 title: qsTr("test button") Button { id: control text: qsTr("I am ready!") palette { button: "red" buttonText: "red" dark: "red" mid: "red" highlight: "red" } } }