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 Width
QtWS25 Last Chance

Text Width

Scheduled Pinned Locked Moved Unsolved QML and Qt Quick
4 Posts 2 Posters 271 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.
  • G Offline
    G Offline
    gnoowami
    wrote on last edited by
    #1

    if i use text with Layout.fillwidth, Layout.maximumwidth, Layout.minimumwidth , then text's width follow maximumwidth but i want to initialize width 50 how to solve
    ex)
    Text {
    Layout.fillwidth : true
    Layout.maximumwidth : 75
    Layout.minimumwidth : 50
    }

    1 Reply Last reply
    0
    • Christian EhrlicherC Christian Ehrlicher moved this topic from General and Desktop on
    • S Offline
      S Offline
      Shankarlinga M
      wrote on last edited by
      #2

      @gnoowami
      dont do hardcode values,try to do generic values.
      for example
      Text {
      Layout.fillwidth : true
      Layout.maximumwidth : parent.width0.1
      Layout.minimumwidth : parent.width
      0.5
      }

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

        Layout.maximumwidth:parent.width here do multiply with 0.1
        Layout.minimumwidth:parent.width here do multiply with 0.5

        G 1 Reply Last reply
        0
        • S Shankarlinga M

          Layout.maximumwidth:parent.width here do multiply with 0.1
          Layout.minimumwidth:parent.width here do multiply with 0.5

          G Offline
          G Offline
          gnoowami
          wrote on last edited by
          #4

          @Shankarlinga-M thank you i solve that

          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