自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(3)
  • 收藏
  • 关注

原创 PyQt5学习笔记(三):布局管理

例1:绝对定位 import sys from PyQt5.QtWidgets import QWidget, QLabel, QLineEdit, QApplication class Example(QWidget): def __init__(self): super().__init__() self.initUI() def i...

2019-01-11 16:10:10 378

原创 PyQt5学习笔记(二):菜单与工具栏

例1:菜单栏 # -*- coding: utf-8 -*- import sys from PyQt5.QtWidgets import QApplication, QMainWindow, QAction class MyWindow(QMainWindow): def __init__(self): super().__init__() sel...

2019-01-09 17:53:24 732

原创 PyQt5学习笔记(一):创建简单的窗口

例1:简单的窗口 # -*- coding: UTF-8 -*- import sys from PyQt5.QtWidgets import QApplication, QWidget from PyQt5.QtGui import QIcon if __name__ == '__main__': app = QApplication(sys.argv) w = QWi...

2019-01-08 10:53:20 1612 1

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除