📜  PyQt5 - 如何隐藏窗口的标题栏?

📅  最后修改于: 2022-05-13 01:55:33.800000             🧑  作者: Mango

PyQt5 - 如何隐藏窗口的标题栏?

当我们使用 PyQt5 设计 GUI(图形用户界面)应用程序时,存在窗口。窗口是计算机监视器上显示的(通常)矩形部分,它看似独立于屏幕的其余部分呈现其内容(例如,目录、文本文件或图像的内容)。 Windows 是构成图形用户界面 (GUI) 的元素之一。

在一个窗口中,我们可以看到存在一个标题栏,其中包含左侧大小的图标和标题,右侧存在控制按钮。

在本文中,我们将看到如何隐藏标题栏。为此,我们将使用setWindowFlag()方法并传递属于QWidget class的参数。

代码 :

# importing the required libraries
  
from PyQt5.QtWidgets import * 
from PyQt5.QtGui import * 
from PyQt5.QtCore import Qt
import sys
  
  
class Window(QMainWindow):
    def __init__(self):
        super().__init__()
  
        # this will hide the title bar
        self.setWindowFlag(Qt.FramelessWindowHint)
  
        # set the title
        self.setWindowTitle("no title")
  
        # setting  the geometry of window
        self.setGeometry(100, 100, 400, 300)
  
        # creating a label widget
        # by default label will display at top left corner
        self.label_1 = QLabel('no title bar', self)
  
        # moving position
        self.label_1.move(100, 100)
  
        # setting up border and background color
        self.label_1.setStyleSheet("background-color: lightgreen;
                                    border: 3px solid green")
  
        # show all the widgets
        self.show()
  
  
# create pyqt5 app
App = QApplication(sys.argv)
  
# create the instance of our Window
window = Window()
# start the app
sys.exit(App.exec())

输出 :
pyqt-隐藏标题栏