PyQt5-python3.5.2无法显示图像

时间:2017-08-17 15:18:59

标签: python user-interface pyqt pyqt5

我从昨天起就一直在努力解决这个问题。 所以,问题是'Example_Pix'部分。它是由其他程序员编码的相同代码,但它不起作用:没有显示图像。有人能告诉我问题是什么吗?

#What I want 
custId|    date   | newcust | finaldesc
----------------------------------------------
 1001 | 2013-08-01|   1     | New
 1001 | 2014-01-01|   1     | Good
 1001 | 2014-03-01|   1     | Bad
 1002 | 2014-02-01|   1     | Good
 1003 | 2014-04-01|   1     | New

1 个答案:

答案 0 :(得分:0)

标签未在任何地方添加到MainWindow。执行此操作的标准方法是将其放在layout中。您需要在代码中添加类似的内容

# Create a layout and add your label to it
layout = QVBoxLayout()
layout.addWidget(label)

# Create a central widget for QMainWindow and assign the layout
widget = QWidget()
widget.setLayout(layout)
self.setCentralWidget(widget)