PyQt5 | 设置按钮的可见优先级

PyQt5 | 设置按钮的可见优先级

在这篇文章中,我们将看到如何为按钮设置可见优先级。当我们在同一位置创建两个按钮时,在最后创建的按钮将覆盖旧的按钮,但是在设置按钮优先级的帮助下,我们可以管理哪个按钮应该在上面,哪个应该在下面。

例如,如果我们在同一位置创建了两个按钮,它们看起来像这样

PyQt5  设置按钮的可见优先级
我们可以看到只有第二个按钮是可见的,尽管我们可以让第二个按钮变成半透明的,以便看到第一个按钮,但第一个按钮仍然不能被点击,但如果我们设置较低的优先级,即让第二个按钮变成低窗,它们看起来就会像这样。

PyQt5  设置按钮的可见优先级

语法: button.lower()

参数: 它不需要参数。

执行的动作: 它将按钮设置为低窗口。

代码。

# importing libraries
from PyQt5.QtWidgets import * 
from PyQt5.QtGui import * 
from PyQt5.QtCore import * 
import sys
  
  
class Window(QMainWindow):
    def __init__(self):
        super().__init__()
  
        # setting title
        self.setWindowTitle("Python ")
  
        # setting geometry
        self.setGeometry(100, 100, 600, 400)
  
        # calling method
        self.UiComponents()
  
        # showing all the widgets
        self.show()
  
    # method for widgets
    def UiComponents(self):
  
        # creating a push button
        button1 = QPushButton("First", self)
  
        # setting geometry of button
        button1.setGeometry(200, 150, 100, 40)
  
        # adding action to a button
        button1.clicked.connect(self.clickme)
  
        # creating a push button
        button2 = QPushButton("Second", self)
  
        # setting geometry of button
        button2.setGeometry(210, 160, 100, 40)
  
        # adding action to a button
        button2.clicked.connect(self.clickme)
  
        # make it in lower the window
        button2.lower()
  
  
    # action method
    def clickme(self):
  
  
        # printing pressed
        print("pressed")
  
# create pyqt5 app
App = QApplication(sys.argv)
  
# create the instance of our Window
window = Window()
  
# start the app
sys.exit(App.exec())

输出 :

PyQt5  设置按钮的可见优先级

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程