#!/usr/bin/python3
# -*- coding: utf-8 -*-
import sys
#这里我们进行了一些必要模块的导入。最基础的widget组件位于PyQt5.QtWidget模块中
from PyQt5.QtWidgets import (QApplication, QWidget, QToolTip, QAction, qApp,
QPushButton, QMessageBox, QDesktopWidget, QMainWindow, QTextEdit, QGridLayout)
from PyQt5.QtGui import QIcon, QFont
from PyQt5.QtCore import QCoreApplication # 引入QtCore的对象模块
# 新窗口
class SecondWindow(QWidget):
def __init__(self):
super(SecondWindow, self).__init__()
self.resize(200, 200)
self.setStyleSheet("background: black") # 背景色改为黑色
#类
class Example(QMainWindow): #QWidget,QMainWindow
def __init__(self):
'''
在面向对象编程中有三个重要的东西,分别是类,数据和方法。
这里我们创建了一个新类叫做Example。Example类继承自QWidget类。
这意味着我们调用了两个构造方法:第一个是Example类的构造方法,第二个是被继承类的构造方法。
super()方法返回了Example类的父类对象,并且我们调用了父类的构造方法。
__init__()方法是Python语言中的构造方法。
'''
super().__init__()
#Qwidget组件是PyQt5中所有用户界面类的基础类。
# -*- coding: utf-8 -*-
import sys
#这里我们进行了一些必要模块的导入。最基础的widget组件位于PyQt5.QtWidget模块中
from PyQt5.QtWidgets import (QApplication, QWidget, QToolTip, QAction, qApp,
QPushButton, QMessageBox, QDesktopWidget, QMainWindow, QTextEdit, QGridLayout)
from PyQt5.QtGui import QIcon, QFont
from PyQt5.QtCore import QCoreApplication # 引入QtCore的对象模块
# 新窗口
class SecondWindow(QWidget):
def __init__(self):
super(SecondWindow, self).__init__()
self.resize(200, 200)
self.setStyleSheet("background: black") # 背景色改为黑色
#类
class Example(QMainWindow): #QWidget,QMainWindow
def __init__(self):
'''
在面向对象编程中有三个重要的东西,分别是类,数据和方法。
这里我们创建了一个新类叫做Example。Example类继承自QWidget类。
这意味着我们调用了两个构造方法:第一个是Example类的构造方法,第二个是被继承类的构造方法。
super()方法返回了Example类的父类对象,并且我们调用了父类的构造方法。
__init__()方法是Python语言中的构造方法。
'''
super().__init__()
#Qwidget组件是PyQt5中所有用户界面类的基础类。