pythonPyQt子菜单的使用

美女程序员鼓励师

有时候你需要在GUI应用程序中使用子菜单。

1、子菜单是嵌套菜单。当您将光标移动到给定的菜单选项时,菜单将显示。

2、为了在应用程序中添加子菜单,需要调用.addMenu()容器菜单对象。

实例

class Window(QMainWindow):

    # Snip...

    def _createMenuBar(self):

        # Snip...

        editMenu.addAction(self.cutAction)

        # Find and Replace submenu in the Edit menu

        findMenu = editMenu.addMenu("Find and Replace")

        findMenu.addAction("Find...")

        findMenu.addAction("Replace...")

        # Snip...

以上就是python PyQt子菜单的使用,希望对大家有所帮助。更多Python学习指路:python基础教程

本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。

以上是 pythonPyQt子菜单的使用 的全部内容, 来源链接: utcz.com/z/545939.html

回到顶部