如何将 QPushButton 连接到升级的 QWidget?
我有一个 QWidget 容器,其中包含我的自定义小部件。这个 QWidget 容器被提升为我创建的自定义小部件。我的 MainWindow.ui 上有一个 QPushButton。我想将此 QPushButton 连接到升级的 QWidget。我该怎么做?
例如,我升级的 QWidget 类上有一个函数,我想在单击位于 MainWindow.ui 的 QPushButton 时调用该函数。
提前致谢!
I have a QWidget container that contains my custom widget. This QWidget container was promoted to the custom widget I created. I have a QPushButton on my MainWindow.ui. I want to connect this QPushButton to the promoted QWidget. How will I do this?
For example, I have a function on my promoted QWidget class, and I want to call this function when I click the QPushButton located at the MainWindow.ui.
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否考虑过使用连接?
将单击的 QPushButton 信号连接到该函数(确保其声明的插槽)。
Have you considered using a connect??
connect the QPushButton singal clicked to that function (make sure its a slot where its declared).