Hi, I am really new in Qt. I created a GUI application project and I am trying to edit the buttons I created in the Designer but where are they created in the code? I can't see anything related to it in .cpp files. I assumed that it would be like Visual Studio you know when I double click on sth I can write the events of it etc. In my mainwindow.cpp there is only
#include "mainwindow.h"
#include "ui_mainwindow.h"
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
}
MainWindow::~MainWindow()
{
delete ui;
}
How do I change the buttons or anything I created with this? I have a main.cpp other than this.
Bookmarks