Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. International
  3. German
  4. Wie kann ich einen Downarrow einer editierbaren combobox ändern? (QComboBox[type= "xy"]::down-arrow:editable{})

Wie kann ich einen Downarrow einer editierbaren combobox ändern? (QComboBox[type= "xy"]::down-arrow:editable{})

Scheduled Pinned Locked Moved German
2 Posts 2 Posters 1.5k 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.
  • M Offline
    M Offline
    martin s.
    wrote on last edited by
    #1

    Hi,
    ich bin ein Anfänger für QT und möchte nur vorhandene Objekte mittels Stylesheet umformatieren.
    Nun habe ich hübsche Comboboxen gestaltet jedoch funktioniert der DropDown arrow nur bei einer QComboBox:!editable
    Wie kann ich den down-arrow für eine editier bare Combobox ändern?
    Der untere Code funktioniert nicht. (Also nur für eine !editable Combobox obwohl ich es nicht ausdrücklich geschrieben habe)
    QComboBox[type = “xy”]::down-arrow
    { image: url(pictures:downarrow.svg); top: 1px; left: 0px;
    }
    QComboBox[type = “xy”]::down-arrow:editable
    { image: url(pictures:downarrow.svg); top: 1px; left: 0px;
    }
    Bin für jede Hilfe dankbar!

    1 Reply Last reply
    0
    • raven-worxR Offline
      raven-worxR Offline
      raven-worx
      Moderators
      wrote on last edited by
      #2

      probier mal folgendes:

      @
      QComboBox[type = “xy”][editable="true"]::down-arrow
      {
      image: url(pictures:downarrow.svg); top: 1px; left: 0px;
      }
      @

      --- SUPPORT REQUESTS VIA CHAT WILL BE IGNORED ---
      If you have a question please use the forum so others can benefit from the solution in the future

      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