2

Almost all of the sources I've seen while searching are outdated for such a simple question. How can I change a label's font and size in pyqt4?

Pop Car
  • 363
  • 5
  • 15

1 Answers1

2

Basically you need QFont (in setupUi method or anywhere):

font = QtGui.QFont()
font.setFamily(_fromUtf8("FreeMono"))
font.setBold(True)
self.someLabel.setFont(font)

You can also check QFont reference.

P.S. _fromUtf8 is QtCore.QString.fromUtf8 imported as _fromUtf8

valignatev
  • 6,020
  • 8
  • 37
  • 61