PyQt5 – 如何从任务栏隐藏应用程序?
在创建 PyQt5 应用程序时,窗口会打开并在任务栏中,应用程序会自动出现,当我们关闭应用程序时,它会被删除。
任务栏是具有多种用途的图形用户界面元素。它通常显示当前正在运行的程序。任务栏的具体设计和布局因操作系统而异,但通常采用位于屏幕一侧的条带形式。
在本文中,我们将看到如何从任务栏中隐藏应用程序,为此我们将使用setWindowFlag()
方法并传递属于QWidget class
的对象。
Syntax : setWindowFlag(QtCore.Qt.Tool)
Argument : It takes Window type as argument.
Action performed : It hides the app from the task bar.
代码 :
# importing the required libraries
from PyQt5.QtWidgets import *
from PyQt5.QtGui import *
from PyQt5 import QtCore
import sys
class Window(QMainWindow):
def __init__(self):
super().__init__()
# this will hide the app from task bar
self.setWindowFlag(QtCore.Qt.Tool)
# set the title
self.setWindowTitle("NO task bar")
# setting the geometry of window
self.setGeometry(60, 60, 800, 500)
# creating a label widget
# by default label will display at top left corner
self.label_1 = QLabel('no task 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())
输出 :