def initUI(self):
self.layout = QtGui.QGridLayout()
self.setLayout(self.layout)
self.combo = QtGui.QComboBox()
self.combo.addItems(["Files","Stats","Custom"])
self.combo.currentIndexChanged.connect(self.currentIndexChanged)
self.layout.addWidget(self.combo)
评论列表
文章目录