Qt Designer:如何向按钮添加自定义插槽和代码

发布于 2024-12-13 05:25:57 字数 73 浏览 2 评论 0原文

我使用 Qt4 Designer,我希望当我单击“是”按钮时,一些代码将会执行。当我单击“否”时,将执行其他一些代码。我该怎么做呢?

I use Qt4 Designer and I want that when I click on the "yes" button, some code will execute. And when I click on the "no", some other code will be execute. How can I do it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

錯遇了你 2024-12-20 05:25:57
  1. 单击编辑信号/时隙工具。

  2. 为您的按钮创建连接。为此,请用鼠标左键按下设计器中的按钮来选择它。将鼠标移动到主窗口中的某个位置以创建与主窗口的连接(就像一条带有接地连接的红线)。

  3. 释放鼠标按钮后,将出现配置连接对话框。

  4. 在此对话框中,在左侧文本控件(发送者)中选择一个信号,例如 pressed()

  5. 然后按右侧文本控件(接收者)中的编辑。出现MainWindow 信号/槽 对话框。

  6. 在插槽面板中添加一个新插槽(绿色十字)。出现文本 slot1()。双击它来编辑该行并写入函数的名称 doit_when_yes_ispressed()。接受。

  7. 现在,在配置连接对话框中,您将在右侧文本控件中看到您的函数。选择并接受。

  8. 现在在设计器中,您可以在小部件中看到信号和您的函数。

  1. Click on the Edit Signal/Slots tool.

  2. Create a connection for your button. For this, select your button in the designer by pressing on it with the left button of the mouse. Move the mouse to some place in the main window to create a connection with the main window (it is like a red line with a earth (grounding) connection).

  3. When you release the mouse button, the Configure Connection dialog appears.

  4. In this dialog select a signal in the left text control (the sender), for example, pressed().

  5. Then press edit in the right text control (the receiver). A dialog for the Signals/Slots of MainWindow appears.

  6. In the slot panel add a new slot (green cross). The text slot1() appears. Double click on it to edit the line and write instead the name of your function doit_when_yes_ispressed(). Accept.

  7. Now in the Configure Connection dialog you will see your function in the right text control. Select and Accept.

  8. In the designer now you can see the signal and your function in the widget.

耳根太软 2024-12-20 05:25:57
  • 右键单击您的小部件
  • 选择“转到插槽...”
  • 选择一个信号并单击“确定”

该信号的自定义插槽声明和定义将添加到 *.cpp 和 *.h 文件中。它的名称将自动生成。

更新
抱歉,我没有注意到这个问题是关于Python & QtDesigner 本身,我正在考虑 QtCreator IDE 中的设计器模式。然而,这对于正在寻找 Qt/C++ 信息的人来说仍然可能有用,所以我留下答案。

  • Right-click on your widget
  • Select "Go to slot..."
  • Select a signal and click OK

Your custom slot declaration and definition for that signal will be added to *.cpp and *.h files. Its name will be generated automatically.

upd:
Sorry, I didn't notice that the question is about Python & QtDesigner itself, I was thinking of the designer mode in QtCreator IDE. However, this still may be useful for someone who is looking for Qt/C++ info, so I leave the answer.

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