2017-12-10 11:45:40 +08:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
'''
|
|
|
|
Created on 2017年12月10日
|
|
|
|
@author: Irony."[讽刺]
|
2018-12-28 20:50:07 +08:00
|
|
|
@site: https://pyqt5.com https://github.com/892768447
|
2017-12-10 11:45:40 +08:00
|
|
|
@email: 892768447@qq.com
|
|
|
|
@file: CustomWidget
|
|
|
|
@description:
|
|
|
|
'''
|
|
|
|
from PyQt5.QtWidgets import QWidget, QVBoxLayout, QLabel
|
|
|
|
|
|
|
|
|
|
|
|
__Author__ = "By: Irony.\"[讽刺]\nQQ: 892768447\nEmail: 892768447@qq.com"
|
|
|
|
__Copyright__ = "Copyright (c) 2017 Irony.\"[讽刺]"
|
|
|
|
__Version__ = "Version 1.0"
|
|
|
|
|
|
|
|
|
|
|
|
class CustomWidget(QWidget):
|
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super(CustomWidget, self).__init__(*args, **kwargs)
|
|
|
|
layout = QVBoxLayout(self)
|
|
|
|
layout.addWidget(QLabel("我是自定义CustomWidget", self))
|