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. How QPushButton checked show only border-bottom ?
Forum Updated to NodeBB v4.3 + New Features

How QPushButton checked show only border-bottom ?

Scheduled Pinned Locked Moved Solved General and Desktop
3 Posts 2 Posters 1.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.
  • sonichyS Offline
    sonichyS Offline
    sonichy
    wrote on last edited by
    #1

    The style border-bottom do not work.
    And can set style to QButtonGroup ?

    setStyleSheet("QPushButton { font-size:20px; }"
                  "QPushButton:checked { border-bottom:1px solid rgb(0,131,221); color:rgb(0,131,221); font-size:20px;}");
    

    alt text

    https://github.com/sonichy

    1 Reply Last reply
    0
    • mr ZXM Offline
      mr ZXM Offline
      mr ZX
      wrote on last edited by
      #2

      you must set checkable to true and then set border to none then set border-bottom like this:

      ui->pushButton_2->setCheckable(true);
          ui->pushButton_2->setStyleSheet("QPushButton { font-size:20px; }"
                                          "QPushButton:checked { border:none;border-bottom:1px solid rgb(0,131,221); color:rgb(0,131,221); font-size:20px;}");
      }
      
      1 Reply Last reply
      2
      • sonichyS Offline
        sonichyS Offline
        sonichy
        wrote on last edited by
        #3

        border:none and border-bottom must both have, so strange !
        And use QTabWidget instead of QButtonGroup is much more better here.

        https://github.com/sonichy

        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