如何使用PyQt减小QComboBox的大小?

时间:2019-04-13 08:59:29

标签: python pyqt qcombobox

我用PyQt创建了一个小程序,在其中放置了一个QComboBox,但是这个程序仅包含2个字母的列表。程序窗口很小,为节省空间,我想减小QComboBox的宽度。

这是现在的样子。宽度太大。

This is what it looks like now. The width is too large.

我搜索了Internet,但是经过大量搜索之后,我仍然没有找到任何东西。如果您有任何想法,请先谢谢您。

1 个答案:

答案 0 :(得分:0)

有几种方法可以调整窗口小部件的大小。可以说QComboBox是这样定义的:

combo = QComboBox(self)

一种方法是使用QWidget.resize(width, height)

combo.resize(200,100)

要自动获取合适的尺寸,可以使用QWidget.sizeHint()sizePolicy()

combo.resize(combo.sizeHint())

如果要设置固定大小,可以使用setFixedSize(width, height)setFixedWidth(width)setFixedHeight(height)

combo.setFixedSize(400,100)
combo.setFixedWidth(400)
combo.setFixedHeight(100)

这是一个例子:

enter image description here

from PyQt5.QtWidgets import (QWidget, QLabel, QComboBox, QApplication)
import sys

class ComboboxExample(QWidget):
    def __init__(self):
        super().__init__()

        self.label = QLabel("Ubuntu", self)

        self.combo = QComboBox(self)
        self.combo.resize(200,25)
        # self.combo.resize(self.combo.sizeHint())
        # self.combo.setFixedWidth(400)
        # self.combo.setFixedHeight(100)
        # self.combo.setFixedSize(400,100)
        self.combo.addItem("Ubuntu")
        self.combo.addItem("Mandriva")
        self.combo.addItem("Fedora")
        self.combo.addItem("Arch")
        self.combo.addItem("Gentoo")

        self.combo.move(25, 25)
        self.label.move(25, 75)

        self.combo.activated[str].connect(self.onActivated)        

        # self.setGeometry(0, 0, 500, 125)
        self.setWindowTitle('QComboBox Example')
        self.show()

    def onActivated(self, text):
        self.label.setText(text)
        self.label.adjustSize()  

if __name__ == '__main__':
    app = QApplication(sys.argv)
    ex = ComboboxExample()
    sys.exit(app.exec_())