0

我终于决定从 WxPython 过渡到 QT!我正在使用 Qt Designer5.9,但在放置新插槽时遇到问题。我的目标是在 GUI 上按 abutton并运行我在另一个 python 程序中编写的函数。

在 Qt Designer 中,我“ go to slot”,选择clicked()并出现。

主窗口.cpp

void MainWindow::on_pushButton_2_clicked()
{

}

这正是我想要的,但是语言错误!我的蟒蛇已经够糟糕了,更不用说别的了。所以通过运行本教程,我知道如果我通过了,ui->textEdit->append(("Hello World"));我可以做一些自定义的事情,但是在使用pyuic转换为.py之后,它是如何实现的并不明显。我的函数很容易导入,如下所示,我只需要知道放在哪里。

import myfunction
myfunction()

谁能给我一个示例,说明需要在 Qt Designer 中用 C++ 编写什么,以便我可以在 .ui 转换后调用我的 python 函数?

4

1 回答 1

1

我不知道你为什么需要 C++,你可以在 python 中做你想做的事。在 QT Designer 中设计您的 UI。我喜欢避免使用pyuic,我更喜欢使用以下方式,也许你会发现它更好。假设您的 UI 文件名为 something.ui,并且您在 QT Designer 中将按钮命名为 pushButton_2,那么 python 中的代码将是:

from PyQt4 import QtCore, QtGui, uic
Ui_somewindow, _ = uic.loadUiType("something.ui") #the path to your UI

class SomeWindow(QtGui.QMainWindow, Ui_somewindow):
    def __init__(self):
        QtGui.QMainWindow.__init__(self)
        Ui_somewindow.__init__(self)
        self.setupUi(self)
        self.pushButton_2.clicked.connect(self.yourFunction)

   def yourFunction(self):
        #the function you imported or anything you want to happen when the button is clicked.

if __name__ == "__main__":
    app = QtGui.QApplication(sys.argv)
    window = SomeWindow()
    window.show()
    sys.exit(app.exec_())

希望这可以帮助!

于 2017-06-16T02:44:48.843 回答