2

我是 python 新手,我正在尝试用 PyQt5 重写一个 GUI。我制作的 GUI 是用 Tkinter 编写的。我正在使用框架来显示不同的页面。使用 Tkinter,我成功地使用 tkraise() 函数将页面置于最前面。但是对于 PyQt5,似乎该函数被忽略了。

该文件是一个测试文件,我在将它添加到我的主文件之前尝试了不同的东西。在Dothing函数中,我添加了一个 print("yes") 函数来查看它是否进入函数并且它确实进入了函数,但它并没有以某种方式使用raise_(​​)函数。

谁能解释我做错了什么,或者给我一个链接地址以获取更多信息,以便我自己搜索。我已经在 QT 和其他论坛的网站上查看过,但我找不到答案。

我的文件如下所示:

import sys
from PyQt5.QtWidgets import (QWidget, QGridLayout, QPushButton, QApplication, QFrame, QLabel, QColorDialog)
from PyQt5.QtGui import (QColor)

Lijst = ["Ferri", "Yvonne", "Ineke"] # , "Sidneger", "Deniel", "Tobie", "Nicol"

class Test(QWidget):
    def __init__(self, *args, **kwargs):
        super().__init__()
        self.List = [(255,0,0), (0,255,0), (0,0,255)]
        # self.List = Lijst
        # container = QFrame(self)
        self.setGeometry(300,300,300,300)

        self.Frames = {}
        for F in (self.List):
            selected_color = QColor(F[0],F[1],F[2])
            self.frame = QFrame(self)
            self.frame.setStyleSheet("QWidget { background-color: %s}" % selected_color.name())
            self.frame.setGeometry(100, 0, 300, 300)
            Framas = Pages(self.frame, self, selected_color)
            self.Frames[F] = Framas

    def DoThing(self):
        self.Frames[(255, 0, 0)].raise_()
        print("yes")
        pass

    def DoThing2(self):
        self.Frames[(0, 255, 0)].raise_()
        pass

    def DoThing3(self):
        self.Frames[(0, 0, 255)].raise_()
        pass


class Pages(QFrame):
    def __init__(self, parent, controller, selected_color, *args, **kwargs):
        super().__init__()
        self.controller = controller
        self.frame = parent

        self.button = QPushButton("Change", self.frame) # adding frame as parent
        self.button.move(10, 10)
        self.button.clicked.connect(self.controller.DoThing)

        self.button2 = QPushButton("Change2", self.frame)
        self.button2.move(10, 50)
        self.button2.clicked.connect(self.controller.DoThing2)

        self.button3 = QPushButton("Change3", self.frame)
        self.button3.move(10, 90)
        self.button3.clicked.connect(self.controller.DoThing3)


if __name__ == '__main__':
    app = QApplication(sys.argv)
    Test_window = Test()
    Test_window.show()
    sys.exit(app.exec_())
4

1 回答 1

4

拥有原始代码的来源很难确切知道您需要什么。所以我会尽力帮助你。

首先,您必须只使用一个QFrame,您为每次迭代创建 2 个:QFrame您设置颜色的那个和另一个 Page。

其次,您raise_()在 Page 上使用,因为您将页面添加到字典中,但 Page 没有颜色,但其他QFrame.

import sys
from PyQt5.QtWidgets import (QWidget, QPushButton, QApplication, QFrame)
from PyQt5.QtGui import (QColor)

class Test(QWidget):
    def __init__(self, parent=None):
        super().__init__(parent)
        self.setGeometry(300,300,300,300)

        colors = [(255,0,0), (0,255,0), (0,0,255)]
        self.Frames = {}
        for F in colors:
            selected_color = QColor(*F)
            frame = Pages(parent=self, controller=self)
            frame.setStyleSheet("QWidget { background-color: %s}" % selected_color.name())
            frame.setGeometry(100, 0, 300, 300)
            self.Frames[F] = frame

    def DoThing(self):
        self.Frames[(255, 0, 0)].raise_()

    def DoThing2(self):
        self.Frames[(0, 255, 0)].raise_()

    def DoThing3(self):
        self.Frames[(0, 0, 255)].raise_()

class Pages(QFrame):
    def __init__(self, parent, controller):
        super().__init__(parent)
        self.controller = controller

        self.button = QPushButton("Change", self) # adding frame as parent
        self.button.move(10, 10)
        self.button.clicked.connect(self.controller.DoThing)

        self.button2 = QPushButton("Change2", self)
        self.button2.move(10, 50)
        self.button2.clicked.connect(self.controller.DoThing2)

        self.button3 = QPushButton("Change3", self)
        self.button3.move(10, 90)
        self.button3.clicked.connect(self.controller.DoThing3)


if __name__ == '__main__':
    app = QApplication(sys.argv)
    Test_window = Test()
    Test_window.show()
    sys.exit(app.exec_())
于 2018-07-13T00:01:54.257 回答