Salut,
Je code actuellement une application avec PyQt et j’aimerai créer une fenetre avec 2 textes et une images j’ai donc fait :
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | class InformationBox(QWidget): def __init__(self, main, about): super(InformationBox, self).__init__() self.about = about self.main = main if self.about == "Browthon": self.setWindowTitle("Informations sur Browthon") self.title = QLabel("Browthon") self.description = QLabel(self.main.versionAll + "\nCréé par PastaGames \nGithub : https://github.com/LavaPower/Browthon") self.grid = QGridLayout() self.grid.addWidget(self.title, 1, 1, 1, 2) self.imageLabel = QLabel() self.image = QPixmap("logo.png") self.imageLabel.setPixmap(self.image) self.grid.addWidget(self.imageLabel, 2, 1, 1, 1) self.grid.addWidget(self.description, 2, 2, 1, 1) self.setLayout(self.grid) |
Cependant, l’image ne s’affiche pas quand j’affiche la fenêtre
Merci d’avance pour votre aide
+0
-0