如何连接Qtoolbutton和QStackedWidget(两者在同一框架中)
How to connect Qtoolbutton and QStackedWidget (Both are in same frame)
我创建了一个 Window,其中有 4 个不同的 QToolButton,它在 QStackedWidget 之外。当我单击第一个 QToolButton 时,如图所示,Balance Inquiry 的内容应该显示出来,其余的 QToolButtons 也类似。两人同框
我不知道如何连接。我正在学习 PyQt5。我只是在使用设计器并且对 PyQt5 中的编码有一个非常基本的想法。
GitHub 存储库 link 是:https://github.com/abhi7585/Bank-of-Braavos
既然你不提供MRE那我就从头开始提供解决方案
解决方案是使用QButtonGroup,其中添加了与id相关联的按钮,然后使用buttonClicked信号发送按下按钮的id信息,应该设置为QStackedWidget的currentIndex。
import sys
from PyQt5 import QtCore, QtWidgets
class MainWindow(QtWidgets.QMainWindow):
def __init__(self, parent=None):
super().__init__(parent)
self.title_label = QtWidgets.QLabel(
"BANK OF BRAAVOS", alignment=QtCore.Qt.AlignCenter
)
self.balance_inquiry_button = QtWidgets.QToolButton(text="Balance Inquiry")
self.transaction_button = QtWidgets.QToolButton(text="Transaction")
self.balance_sheet_button = QtWidgets.QToolButton(text="Balance Sheet")
self.support_button = QtWidgets.QToolButton(text="Support")
self.stacked_widget = QtWidgets.QStackedWidget()
self.stacked_widget.addWidget(
QtWidgets.QLabel("Balance Inquiry", alignment=QtCore.Qt.AlignCenter)
)
self.stacked_widget.addWidget(
QtWidgets.QLabel("Transaction", alignment=QtCore.Qt.AlignCenter)
)
self.stacked_widget.addWidget(
QtWidgets.QLabel("Balance Sheet", alignment=QtCore.Qt.AlignCenter)
)
self.stacked_widget.addWidget(
QtWidgets.QLabel("Support", alignment=QtCore.Qt.AlignCenter)
)
central_widget = QtWidgets.QWidget()
self.setCentralWidget(central_widget)
lay = QtWidgets.QVBoxLayout(central_widget)
lay.addWidget(self.title_label)
hlay = QtWidgets.QHBoxLayout()
hlay.addWidget(self.balance_inquiry_button)
hlay.addWidget(self.transaction_button)
hlay.addWidget(self.balance_sheet_button)
hlay.addWidget(self.support_button)
lay.addLayout(hlay)
lay.addWidget(self.stacked_widget)
<b>self.group_button = QtWidgets.QButtonGroup()
for i, button in enumerate(
(
self.balance_inquiry_button,
self.transaction_button,
self.balance_sheet_button,
self.support_button,
)
):
self.group_button.addButton(button, i)
self.group_button.buttonClicked[int].connect(
self.stacked_widget.setCurrentIndex
)</b>
self.resize(640, 480)
if __name__ == "__main__":
app = QtWidgets.QApplication(sys.argv)
ex = MainWindow()
ex.show()
sys.exit(app.exec_())
我创建了一个 Window,其中有 4 个不同的 QToolButton,它在 QStackedWidget 之外。当我单击第一个 QToolButton 时,如图所示,Balance Inquiry 的内容应该显示出来,其余的 QToolButtons 也类似。两人同框
我不知道如何连接。我正在学习 PyQt5。我只是在使用设计器并且对 PyQt5 中的编码有一个非常基本的想法。
GitHub 存储库 link 是:https://github.com/abhi7585/Bank-of-Braavos
既然你不提供MRE那我就从头开始提供解决方案
解决方案是使用QButtonGroup,其中添加了与id相关联的按钮,然后使用buttonClicked信号发送按下按钮的id信息,应该设置为QStackedWidget的currentIndex。
import sys
from PyQt5 import QtCore, QtWidgets
class MainWindow(QtWidgets.QMainWindow):
def __init__(self, parent=None):
super().__init__(parent)
self.title_label = QtWidgets.QLabel(
"BANK OF BRAAVOS", alignment=QtCore.Qt.AlignCenter
)
self.balance_inquiry_button = QtWidgets.QToolButton(text="Balance Inquiry")
self.transaction_button = QtWidgets.QToolButton(text="Transaction")
self.balance_sheet_button = QtWidgets.QToolButton(text="Balance Sheet")
self.support_button = QtWidgets.QToolButton(text="Support")
self.stacked_widget = QtWidgets.QStackedWidget()
self.stacked_widget.addWidget(
QtWidgets.QLabel("Balance Inquiry", alignment=QtCore.Qt.AlignCenter)
)
self.stacked_widget.addWidget(
QtWidgets.QLabel("Transaction", alignment=QtCore.Qt.AlignCenter)
)
self.stacked_widget.addWidget(
QtWidgets.QLabel("Balance Sheet", alignment=QtCore.Qt.AlignCenter)
)
self.stacked_widget.addWidget(
QtWidgets.QLabel("Support", alignment=QtCore.Qt.AlignCenter)
)
central_widget = QtWidgets.QWidget()
self.setCentralWidget(central_widget)
lay = QtWidgets.QVBoxLayout(central_widget)
lay.addWidget(self.title_label)
hlay = QtWidgets.QHBoxLayout()
hlay.addWidget(self.balance_inquiry_button)
hlay.addWidget(self.transaction_button)
hlay.addWidget(self.balance_sheet_button)
hlay.addWidget(self.support_button)
lay.addLayout(hlay)
lay.addWidget(self.stacked_widget)
<b>self.group_button = QtWidgets.QButtonGroup()
for i, button in enumerate(
(
self.balance_inquiry_button,
self.transaction_button,
self.balance_sheet_button,
self.support_button,
)
):
self.group_button.addButton(button, i)
self.group_button.buttonClicked[int].connect(
self.stacked_widget.setCurrentIndex
)</b>
self.resize(640, 480)
if __name__ == "__main__":
app = QtWidgets.QApplication(sys.argv)
ex = MainWindow()
ex.show()
sys.exit(app.exec_())