在 PyQt 应用程序中,插槽是发出信号时调用的成员函数。这些信号可以由各种 Qt 对象发出,例如按钮或小部件。默认情况下,槽接收信号传递的参数。但是,也可以将其他参数传递给槽。
考虑以下场景:您有一个定义名为 DiffP 的变量的函数。您想要将此变量传递给连接到按钮单击事件的槽。
class MyWidget(QtWidgets.QWidget): def __init__(self): [...] self.button.clicked.connect(self.some_slot) def some_slot(self): # Here you want to access the 'DiffP' variable defined in another function
通过槽传递额外参数的一种方法是使用 lambda功能。 Lambda 函数是可以内联定义的匿名函数。您可以创建一个 lambda 函数,它同时采用默认槽参数和要传递的额外参数。
class MyWidget(QtWidgets.QWidget): def __init__(self): [...] self.button.clicked.connect(lambda: self.some_slot("DiffP")) def some_slot(self, DiffP): # Here you can access the 'DiffP' variable
在此示例中,lambda 函数采用额外参数 DiffP 并将其传递给 some_slot 函数.
通过槽传递额外参数的另一种方法是使用functools.partial 函数。部分函数创建一个新函数,该函数部分应用了一些参数。您可以使用partial创建一个仅采用默认槽参数的函数,并将额外参数作为绑定参数传递。
from functools import partial class MyWidget(QtWidgets.QWidget): def __init__(self): [...] self.button.clicked.connect(partial(self.some_slot, "DiffP")) def some_slot(self, DiffP): # Here you can access the 'DiffP' variable
在此示例中,partial函数创建一个仅采用button_or_id参数的新函数并将 DiffP 参数绑定到它。当调用槽时,将使用正确的参数调用新函数。
以上是如何将额外参数传递给 PyQt 中的 Qt 插槽?的详细内容。更多信息请关注PHP中文网其他相关文章!