Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. QML and Qt Quick
  4. Error code (m129)

Error code (m129)

Scheduled Pinned Locked Moved Solved QML and Qt Quick
7 Posts 3 Posters 1.0k Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • S Offline
    S Offline
    stm32learn
    wrote on last edited by stm32learn
    #1

    Hi
    How i can solve this problem?
    2fecf989-d6bf-49b9-ae1e-f7d1aec39786-image.png
    a89c0db1-2bd0-4ff4-815e-713dba78440f-image.png

    jsulmJ 1 Reply Last reply
    0
    • S stm32learn

      Hi
      How i can solve this problem?
      2fecf989-d6bf-49b9-ae1e-f7d1aec39786-image.png
      a89c0db1-2bd0-4ff4-815e-713dba78440f-image.png

      jsulmJ Offline
      jsulmJ Offline
      jsulm
      Lifetime Qt Champion
      wrote on last edited by
      #2

      @stm32learn Please show the whole QML file.

      https://forum.qt.io/topic/113070/qt-code-of-conduct

      1 Reply Last reply
      0
      • S Offline
        S Offline
        stm32learn
        wrote on last edited by
        #3

        12e7461e6-28c6-4ecb-8190-fb0ce6cea839-image.png

        2bb3adccb-4449-4f8a-b74e-8842e91d82dd-image.png

        KroMignonK 1 Reply Last reply
        0
        • S stm32learn

          12e7461e6-28c6-4ecb-8190-fb0ce6cea839-image.png

          2bb3adccb-4449-4f8a-b74e-8842e91d82dd-image.png

          KroMignonK Offline
          KroMignonK Offline
          KroMignon
          wrote on last edited by
          #4

          @stm32learn Please send code as text not as picture!

          use </> to insert the code, this will be more easy to understand the code and to help you.

          It is an old maxim of mine that when you have excluded the impossible, whatever remains, however improbable, must be the truth. (Sherlock Holmes)

          1 Reply Last reply
          1
          • S Offline
            S Offline
            stm32learn
            wrote on last edited by
            #5

            @KroMignon said in Error code (m129):

            import QtQuick 2.15
            import QtQuick.Controls 2.12
            
            Button {
                id: control
                implicitWidth: Math.max(
                                   buttonBackground ? buttonBackground.implicitWidth : 0,
                                   textItem.implicitWidth + leftPadding + rightPadding)
                implicitHeight: Math.max(
                                    buttonBackground ? buttonBackground.implicitHeight : 0,
                                    textItem.implicitHeight + topPadding + bottomPadding)
                leftPadding: 4
                rightPadding: 4
            
                text: "My Button"
            
                background: buttonBackground
                Rectangle {
                    id: buttonBackground
                    color: "#00000000"
                    implicitWidth: 100
                    implicitHeight: 40
                    opacity: enabled ? 1 : 0.3
                    radius: 2
                    border.color: "#047eff"
                }
            
                contentItem: textItem
                Text {
                    id: textItem
                    text: control.text
            
                    opacity: enabled ? 1.0 : 0.3
                    color: "#047eff"
                    horizontalAlignment: Text.AlignHCenter
                    verticalAlignment: Text.AlignVCenter
                }
            
                states: [
                    State {
                        name: "normal"
                        when: !control.down
            
                        PropertyChanges {
                            target: buttonBackground
                            color: "#00000000"
                            border.color: "#047eff"
                        }
            
                        PropertyChanges {
                            target: textItem
                            color: "#047eff"
                        }
                    },
                    State {
                        name: "down"
                        when: control.down
                        PropertyChanges {
                            target: textItem
                            color: "#ffffff"
                        }
            
                        PropertyChanges {
                            target: buttonBackground
                            color: "#047eff"
                            border.color: "#00000000"
                        }
                    }
                ]
            }
            
            1 Reply Last reply
            0
            • S Offline
              S Offline
              stm32learn
              wrote on last edited by
              #6

              Solved!!
              Just rename my new object to other name

              KroMignonK 1 Reply Last reply
              0
              • S stm32learn

                Solved!!
                Just rename my new object to other name

                KroMignonK Offline
                KroMignonK Offline
                KroMignon
                wrote on last edited by
                #7

                @stm32learn said in Error code (m129):

                Just rename my new object to other name

                I don't understand what you are saying?
                Do you mean the QML filename? Is it called Button.qml ?
                If this was the issue, you could also just use full name in QML to avoid name conflicts:

                import QtQuick 2.15
                import QtQuick.Controls 2.12
                
                QtQuick.Controls.Button {
                }
                

                It is an old maxim of mine that when you have excluded the impossible, whatever remains, however improbable, must be the truth. (Sherlock Holmes)

                1 Reply Last reply
                1

                • Login

                • Login or register to search.
                • First post
                  Last post
                0
                • Categories
                • Recent
                • Tags
                • Popular
                • Users
                • Groups
                • Search
                • Get Qt Extensions
                • Unsolved