Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的 Qt Creator 项目中,当我添加一些对象(如行编辑、按钮等)时,我在编写 ui-> 时没有得到它们。我不知道是什么原因,因为到目前为止一切都很好。这立即发生了。现在在我的其他一些项目中,一切正常,但在我的主项目中,没有什么新东西可以声明。我的代码可能有问题吗?或者这是来自 Qt Creator 编辑器的一些问题。提前非常感谢。
尝试'make clean',qmake。检查您的 ui 是否设置正确
MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::MainWindow) { ui->setupUi(this); ... }
确保 ui-> 是对执行部分的已知引用。检查缺少的括号。