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. text and TextField
Qt 6.11 is out! See what's new in the release blog

text and TextField

Scheduled Pinned Locked Moved Solved QML and Qt Quick
4 Posts 2 Posters 1.8k 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.
  • A Offline
    A Offline
    AYYAPPA
    wrote on last edited by
    #1

    how can i anchor item just after text in text field. even though text field is big and text is small how can i detect end of the text?

    1 Reply Last reply
    0
    • ODБOïO Offline
      ODБOïO Offline
      ODБOï
      wrote on last edited by
      #2

      @AYYAPPA hi,
      See http://doc.qt.io/qt-5/qml-qtquick-textmetrics.html

      exemple :

          TextField {
                      height: 60
                      width: 400
                      id:     tx
                      text:   "testText"
                      anchors.centerIn: parent
                  }
                  property int margin:20
                  Button{
                      width: 80
                      height: 40
                      anchors.verticalCenter: tx.verticalCenter
                      anchors.left: tx.right
                      anchors.leftMargin: -((tx.width - margin) -  t_m.tightBoundingRect.width)
                  }
                  TextMetrics {
                      id:t_m
                      font:tx.font
                      text:tx.text
                  }
      

      LA

      1 Reply Last reply
      0
      • A Offline
        A Offline
        AYYAPPA
        wrote on last edited by
        #3

        @LeLev thanks mate ! exactly what i needed!

        ODБOïO 1 Reply Last reply
        0
        • A AYYAPPA

          @LeLev thanks mate ! exactly what i needed!

          ODБOïO Offline
          ODБOïO Offline
          ODБOï
          wrote on last edited by
          #4

          @AYYAPPA nice!

          1 Reply Last reply
          0

          • Login

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