如何将 QPushButton 连接到升级的 QWidget?

发布于 2024-11-01 04:40:14 字数 226 浏览 4 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

暮倦 2024-11-08 04:40:14

您是否考虑过使用连接?

将单击的 QPushButton 信号连接到该函数(确保其声明的插槽)。

Have you considered using a connect??

connect the QPushButton singal clicked to that function (make sure its a slot where its declared).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文