在窗口顶部中心显示Qlabel

问题描述 投票:0回答:1

我无法自行设置PyQt。我的想法是创建一个具有歌曲标题和专辑封面的音乐播放器。我成功创建了自己的窗口并添加了专辑封面。但是我无法在希望的正确位置添加标签。

我希望歌曲标题像下面的图片一样位于窗口的顶部中央>

enter image description here

我有很多尝试,但是没有运气。

感谢阅读。

对不起我的英语不好对不起

import sys
from PyQt5.QtGui import QIcon, QPixmap, QFontDatabase, QFont
from PyQt5.QtWidgets import QApplication, QLabel, QMainWindow, QWidget, QGridLayout, QDialog
from PyQt5.QtCore import Qt, QRect

# Subclass QMainWindow to customise your application's main window
class MainWindow(QMainWindow):
    def __init__(self, *args, **kwargs):
        super(MainWindow, self).__init__(*args, **kwargs)
        self.title = 'PyQt5 simple window - pythonspot.com'
        self.left = 10
        self.top = 10
        self.width = 480
        self.height = 320
        self.initUI()

        self.setWindowTitle("My Awesome App")

    def add_font(self):
        # Load the font:
        font_db = QFontDatabase()
        font_id = font_db.addApplicationFont('American Captain.ttf')
        families = font_db.applicationFontFamilies(font_id)
        ttf_font = QFont(' '.join(families), 15)
        return ttf_font

    def initUI(self):
        ttf_font = self.add_font()
        w = QWidget()
        self.setWindowTitle(self.title)
        self.setGeometry(self.left, self.top, self.width, self.height)
        self.show()
        album_cover = QLabel(self)
        album_pic = QPixmap('resized_image.jpg')
        album_cover.setPixmap(album_pic)

        album_cover.setAlignment(Qt.AlignCenter)
        self.setCentralWidget(album_cover)


        art_alb = QLabel(self)
        art_alb.setFont(ttf_font)
        art_alb.setText("michael buble - christmas")
        art_alb.setGeometry(self.x, self.y, self.x, self.y)
        [![enter image description here][1]][1]art_alb.setAlignment(Qt.AlignTop | Qt.AlignCenter )
        art_alb.show()
        self.show()



app = QApplication(sys.argv)

window = MainWindow()
window.show()

app.exec_()





我无法自行设置PyQt。我的想法是创建一个具有歌曲标题和专辑封面的音乐播放器。我已经成功创建了自己的窗口并添加了专辑封面。但是我无法在...

python python-3.x pyqt pyqt5
1个回答
0
投票

您应该使用中央小部件及其布局来控制子小部件的大小和在主窗口中的位置。这是您应该执行的initUI方法的重写:

© www.soinside.com 2019 - 2024. All rights reserved.