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. Stylesheet of QToolBox
Qt 6.11 is out! See what's new in the release blog

Stylesheet of QToolBox

Scheduled Pinned Locked Moved Unsolved General and Desktop
3 Posts 2 Posters 3.3k 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.
  • FranckynosF Offline
    FranckynosF Offline
    Franckynos
    wrote on last edited by
    #1

    I want change Icone of tab from QToolBox when one page is selected.
    I worte :

    QToolBox{
         icon-size: 40px;
    	 background: #1E2736;
    }
    
    QToolBox QScrollArea>QWidget>QWidget
    {
        background: #1E2736;
    }
    
    QToolBox::tab {
    
        background-color: qlineargradient(x1: 0, y1: 0, x2: 0.33, y2: 0, 
                stop: 0 #1f2837, stop: 1 #1e4562);
    
        border-radius: 10px;
    	color: rgb(63, 85, 101);
    	font: 17pt "Utsaah";
    }
    
    // this doesn't work.
    QToolBox  QToolBoxButton{
    	image: url(:/icones/deleteRed);
    }
    
    QToolBox::tab:selected { 
        font: italic;
        color: white;
    }
    

    I have tried through QtDesigner with property of QToolBox but nothing happend.

    1 Reply Last reply
    0
    • K Offline
      K Offline
      khalistan
      wrote on last edited by
      #2

      its not image. Its
      background-image: url("/blabla.jpg");

      1 Reply Last reply
      0
      • FranckynosF Offline
        FranckynosF Offline
        Franckynos
        wrote on last edited by
        #3

        I want change image of QIcon at left; the background-image put the image at middle.

        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