Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
PyQt Widgetと同等のものはありますtkinter LabelFrameか?このようなもの
PyQt Widget
tkinter LabelFrame
QtGui.QFrameこれまでのところ、と同じようには機能しないように見えるものしか見つかりませんでしたtkinter LabelFrame。何か不足していますか?
QtGui.QFrame
この目的で QGroupBox を使用できます。
self.frame = QtGui.QGroupBox(self) self.frame.setTitle("Hello World")