对PyQt5基本窗口控件 QMainWindow的使用详解

作者:zhushoutao 时间:2021-08-27 21:47:22 

QMainWindow基本介绍

QMainWindow主窗口为用户提供了一个应用程序框架,它有自己的布局,可以在布局中添加控件。

窗口类型介绍

PyQt5中,主要使用以下三个类来创建窗口,可以直接使用,也可以继承后再使用

QMainWindow

QWidget

QDialog

QMainWindow

QMainWindow可以包含菜单栏,工具栏,状态栏,标题栏等,是GUI程序的主窗口。

如果我们需要创建主窗口程序,就使用该类。

QDialog

QDialog是对话框窗口的基类,对话框一般用来执行短期任务,或者与用户进行互动,它可以是模态的也可以是非模态的。QDialog没有菜单栏,工具栏,状态栏等。

如果我们需要的是对话框,就选择该类。

QWidget

该类作为QMainWindow和QWidget的父类,并未细化到主窗口或者对话框,作为通用窗口类,如果不确定具体使用哪种窗口类,就可以使用该类。

创建主窗口

QMainWindow官方文档

如果一个窗口包含一个或者多个窗口,这个窗口就是父窗口,被包含的窗口就是子窗口。没有父窗口的窗口就是顶层窗口,QMainWindow就是顶层窗口,它可以包含很多界面元素。

在OyQt中,在主窗口中会有一个控件(Widget)占位符来占着中心窗口,可以使用setCentralWidget()来设置中心窗口。

对PyQt5基本窗口控件 QMainWindow的使用详解

重要方法

方法描述
addToolBar()添加工具栏
centralWidget()返回窗口中心的控件,未设置返回NULL
menuBar()返回主窗口的菜单栏
setCentralWidget()设置窗口中心的控件
setStatusBar()设置状态栏
statusBar()获取状态栏对象

Note: Creating a main window without a central widget is not supported. You must have a central widget even if it is just a placeholder.

QMainWindow不能设置布局,因为它有自己的布局,不过中心窗口是可以使用布局的。

创建一个主窗口


# _*_ coding:utf-8 _*_
import sys
from PyQt5.QtWidgets import (QApplication, QMainWindow, QPushButton)
from PyQt5.QtGui import QIcon

class MainWindow(QMainWindow):
def __init__(self, parent=None):
 super(MainWindow, self).__init__(parent)
 self.init_ui()

def init_ui(self):
 #设置窗口属性
 self.setGeometry(200, 200, 400, 200)
 self.setWindowTitle('创建主窗口')
 self.setWindowIcon(QIcon(r"E:\\1.jpg"))
 #设置状态栏
 self.status = self.statusBar()
 self.status.showMessage('我是状态栏', 5000)

if __name__ == "__main__":
app = QApplication(sys.argv[1:])

window = MainWindow()
window.show()

sys.exit(app.exec_())

对PyQt5基本窗口控件 QMainWindow的使用详解

主窗口居中显示


# _*_ coding:utf-8 _*_
import sys
from PyQt5.QtWidgets import (QApplication, QMainWindow, QDesktopWidget)
from PyQt5.QtGui import QIcon

class MainWindow(QMainWindow):
def __init__(self, parent=None):
 super(MainWindow, self).__init__(parent)
 self.init_ui()

def init_ui(self):
 #设置窗口属性
 self.resize(400, 200)
 self.setWindowTitle('主窗口居中显示')
 self.setWindowIcon(QIcon(r"E:\\1.jpg"))
 #设置状态栏
 self.status = self.statusBar()
 self.status.showMessage('我是状态栏', 5000)
 #居中显示处理
 self.move_center()

def move_center(self):
 screen = QDesktopWidget().screenGeometry()
 form = self.geometry()
 x_move_step = (screen.width() - form.width()) / 2
 y_move_step = (screen.height() - form.height()) / 2
 self.move(x_move_step, y_move_step)

if __name__ == "__main__":
app = QApplication(sys.argv[1:])

window = MainWindow()
window.show()

sys.exit(app.exec_())

对PyQt5基本窗口控件 QMainWindow的使用详解


screen = QDesktopWidget().screenGeometry()

获取当前屏幕的大小


self.geometry()

获取窗口大小

关闭主窗口


# _*_ coding:utf-8 _*_
import sys
from PyQt5.QtWidgets import (QApplication, QWidget, QVBoxLayout,
       QPushButton, QMainWindow)

class MainWindow(QMainWindow):
def __init__(self):
 super(MainWindow, self).__init__()
 self.init_ui()

def init_ui(self):
 self.setWindowTitle('关闭主窗口')

layout = QVBoxLayout()
 self.close_btn = QPushButton('关闭', self)
 layout.addWidget(self.close_btn)

main_frame = QWidget()
 self.setCentralWidget(main_frame)
 main_frame.setLayout(layout)

self.close_btn.clicked.connect(self.on_button_click)

def on_button_click(self):
 #将信息显示在状态栏中
 sender = self.sender()
 msg = sender.text() + " 被按下了"
 status = self.statusBar()
 status.showMessage(msg, 5000)
 #程序退出
 app = QApplication.instance()
 app.quit()

if __name__ == "__main__":
app = QApplication(sys.argv[1:])

window = MainWindow()
window.show()

sys.exit(app.exec_())

对PyQt5基本窗口控件 QMainWindow的使用详解


self.close_btn.clicked.connect(self.on_button_click)

PyQt中控件之间通信使用信号(Signal)和槽(slot)机制。

定义的方式为 控件.消息.connect(槽)

上例中,就是将button的clicked信号跟槽on_button_click进行了绑定。

来源:https://blog.csdn.net/weixin_43200735/article/details/82696402

标签:PyQt5,窗口,QMainWindow
0
投稿

猜你喜欢

  • JavaScript 设计模式 富有表现力的Javascript(一)

    2023-08-25 07:42:15
  • python pycharm的安装及其使用

    2023-11-04 20:27:06
  • 500行代码使用python写个微信小游戏飞机大战游戏

    2023-01-16 06:58:09
  • 编程经验点滴 动态SQL的拼接技巧

    2024-01-23 22:04:35
  • pygame游戏之旅 按钮上添加文字的方法

    2022-09-28 23:41:39
  • 实战mysql导出中文乱码及phpmyadmin导入中文乱码的解决方法

    2024-05-11 09:19:05
  • 详解Go操作supervisor xml rpc接口及注意事项

    2024-05-22 10:30:41
  • python实现移动木板小游戏

    2022-03-28 17:21:32
  • SQL Server 中的数据类型隐式转换问题

    2024-01-16 21:05:38
  • vue 封装面包屑组件教程

    2024-05-02 17:11:11
  • java JSP开发之Spring中Bean的使用

    2023-06-16 07:35:08
  • 基于mysql事务、视图、存储过程、触发器的应用分析

    2024-01-28 18:27:51
  • 使用git config --global设置用户名和邮件问题

    2022-02-14 11:01:08
  • ASP.NET中使用SQL存储过程的方法

    2007-08-24 09:31:00
  • 一起来了解mysql数据库

    2024-01-24 07:40:00
  • javascript demo 基本技巧

    2024-04-29 13:24:45
  • sqlserver bcp(数据导入导出工具)一般用法与命令详解

    2024-01-27 03:12:08
  • Mac上Go环境和VS Code的正确安装与配置方法

    2024-05-08 10:16:45
  • pandas 数据索引与选取的实现方法

    2021-07-09 17:37:44
  • javascript中var与let、const的区别详解

    2024-05-09 15:07:32
  • asp之家 网络编程 m.aspxhome.com