Reputation: 9532
Is there any PyQt Widget
that is equivalent to tkinter LabelFrame
? Something like this
So far i only found QtGui.QFrame
which doesn't seem to work the same way as tkinter LabelFrame
. Am i missing something?
Upvotes: 2
Views: 7391
Reputation: 5895
You can use QGroupBox for this purpose.
self.frame = QtGui.QGroupBox(self)
self.frame.setTitle("Hello World")
Upvotes: 5