StartStopButton.qml 439 B

123456789101112131415161718192021
  1. import QtQuick 2.11
  2. Item {
  3. property bool running: false
  4. Image {
  5. id:image
  6. anchors.fill: parent
  7. source: running === true ?"qrc:/img/stop1.png":"qrc:/img/start1.png"
  8. MouseArea{
  9. anchors.fill: parent
  10. onClicked: {
  11. if(running === false)
  12. running = true
  13. else
  14. running = false
  15. }
  16. }
  17. }
  18. }