Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. GroupBox Title Color in QML

GroupBox Title Color in QML

Scheduled Pinned Locked Moved Unsolved General and Desktop
4 Posts 3 Posters 3.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.
  • K Offline
    K Offline
    KiranRudigi
    wrote on last edited by
    #1

    Hi all. I am not finding any property to change the title color of GroupBox in QML. Please help me to resolve it.

    Thank you...

    Gojir4G 1 Reply Last reply
    0
    • R Offline
      R Offline
      Rajashekara
      wrote on last edited by
      #2
      This post is deleted!
      1 Reply Last reply
      0
      • R Offline
        R Offline
        Rajashekara
        wrote on last edited by
        #3

        Try this
        GroupBox{
        title: "<font color="white">my title</font>"
        }

        1 Reply Last reply
        0
        • K KiranRudigi

          Hi all. I am not finding any property to change the title color of GroupBox in QML. Please help me to resolve it.

          Thank you...

          Gojir4G Offline
          Gojir4G Offline
          Gojir4
          wrote on last edited by
          #4

          @KiranRudigi
          Hello, If it is from QtQuick.Controls2, you can customize like this:

          GroupBox {
              id: control
              title: qsTr("GroupBox")
          
              label: Label {
                  x: control.leftPadding
                  width: control.availableWidth
                  text: control.title
                  color: "#21be2b"
                  elide: Text.ElideRight
              }
          }
          

          See Customizing GroupBox

          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