Ignore minimum size when resizing QWidget

后端 未结 1 1825
情深已故
情深已故 2021-01-24 20:36

Is there a way to make a QWidget (and any subclass of it) completely ignore its minimum size? What I want is for a QPushButton to cut off when it is sized too small, rather than

相关标签:
1条回答
  • 2021-01-24 20:52

    You can use:

    button.setSizePolicy(QSizePolicy.Ignored, QSizePolicy.Ignored)
    

    but you'll have to set the initial size yourself.
    Or you can just set the minimum size to a small non-zero value:

    button.setMinimumSize(1,1)
    

    To apply that to all buttons within a widget, you could try to use a style sheet, but the borders don't disappear when the button is at its minimum content size (at least with QGtkStyle on Linux):

    dialog.setStyleSheet("QPushButton { min-height: 0px; min-width: 0px }");
    
    0 讨论(0)
提交回复
热议问题