PyQt5 QPushButton 设置文字对齐方式(基于setStyleSheet)

PyQt5 QPushButton 设置文字对齐方式(基于setStyleSheet)

  • 创建一个QPushButton(文本默认居中对齐)
import sys
from PyQt5.QtWidgets import QGridLayout, QWidget, QPushButton, QApplication


class Tools(QWidget):

    def __init__(self):
        

你可能感兴趣的:(PyQt5,python,PyQt5,QPushButton)