我在pyqt中创建了一些页面,然后在python中编辑它们。
我假设有3页,我希望这个程序运行3次,这意味着第1页到第2页到第3页到第1页。我使用按钮' Next'连接每个页面。
我尝试了循环。这是我的代码,但是没有用。
import sys
from PyQt4.QtCore import *
from PyQt4.QtGui import *
from test import *
app = QApplication(sys.argv)
window = QMainWindow()
ui = Ui_MainWindow()
ui.setupUi(window)
for i in range(3):
def find_page():
ui.stackedWidget.childern()
window.visible = ui.stackedWidget.currentIndex()
def next():
ui.stackedWidget.setCurrentIndex(ui.stackedWidget.currentIndex()+1)
print(window.visible)
ui.next.clicked.connect(next)
window.show()
sys.exit(app.exec_())
答案 0 :(得分:1)
以下是基于代码的如何使用堆叠小部件更改页面的示例。您没有发布您的UI文件,所以我不得不即兴发布其他小部件。您必须更改PyQt4的导入,但其余部分应该相同:
import sys
from PyQt5.QtCore import QTimer
from PyQt5.QtWidgets import QApplication, QLabel, QMainWindow, QStackedWidget
app = QApplication(sys.argv)
window = QMainWindow()
stack = QStackedWidget(parent=window)
label1 = QLabel('label1')
label2 = QLabel('label2')
label3 = QLabel('label3')
stack.addWidget(label1)
stack.addWidget(label2)
stack.addWidget(label3)
print('current', stack.currentIndex())
window.show()
def next():
stack.setCurrentIndex(stack.currentIndex()+1)
print('current', stack.currentIndex())
QTimer.singleShot(1000, next)
QTimer.singleShot(2000, next)
QTimer.singleShot(3000, next)
QTimer.singleShot(4000, app.quit)
sys.exit(app.exec_())