PyQt/QWidget/Lib/CustomWidget.py

25 lines
599 B
Python
Raw Permalink Normal View History

2017-12-10 11:45:40 +08:00
#!/usr/bin/env python
# -*- coding: utf-8 -*-
2021-07-13 14:52:26 +08:00
"""
2017-12-10 11:45:40 +08:00
Created on 2017年12月10日
2021-07-13 14:52:26 +08:00
@author: Irony
@site: https://pyqt.site , https://github.com/PyQt5
2017-12-10 11:45:40 +08:00
@email: 892768447@qq.com
@file: CustomWidget
@description:
2021-07-13 14:52:26 +08:00
"""
2017-12-10 11:45:40 +08:00
2021-07-13 14:52:26 +08:00
try:
from PyQt5.QtWidgets import QWidget, QVBoxLayout, QLabel
except ImportError:
from PySide2.QtWidgets import QWidget, QVBoxLayout, QLabel
2017-12-10 11:45:40 +08:00
class CustomWidget(QWidget):
def __init__(self, *args, **kwargs):
super(CustomWidget, self).__init__(*args, **kwargs)
layout = QVBoxLayout(self)
2021-07-13 14:52:26 +08:00
layout.addWidget(QLabel("我是自定义CustomWidget", self))