我有一个名为 FirstPage 的类,我在主窗口中有一个 FirstPage 对象!现在我想访问主窗口中第一页的“Ui”但我不能!
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
private slots:
private:
FirstPage* FrstPg;
};
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
FrstPg = new FirstPage (this);
connect (FrstPg->ui->pushButton,SIGNAL(clicked(),FrstPg,SLOT(show());//Error ERRor
}
我应该怎么办 ?!