无标题文章

# Refet to : http://blog.csdn.net/weiaitaowang/article/details/52070872

import sys

from PyQt5.QtWidgets import QApplication,  QWidget,  QToolTip,  QPushButton

from PyQt5.QtGui import QFont

class MyTip(QWidget):

    def __init__(self):

        super().__init__()

    self.initUI()

        # 这个静态方法设置用于工具提示的字体,我们使用 14px大小与 楷体 字体

         QToolTip.setFont(QFont('楷体',  14))

你可能感兴趣的:(无标题文章)