Qt学习三:多窗体调用


本程序是基于VS+Qt的,这里需要再在VS界面里面 (解决方案管理器->mydialog->Form Files->右键->添加->类->Qt5Classes->Qt5GuiClass->填写MainWindow2)并保存。


创建好后,在MainWindow.h中写入:


#ifndef MAINWINDOW_H
#define MAINWINDOW_H

#include <QtWidgets/QMainWindow>
#include "ui_mainwindow.h"

//-----------------------

#include <qpushbutton.h>
#include <mainwindow2.h>

//---------------------------

class MainWindow : public QMainWindow
{
	Q_OBJECT

public:
	MainWindow(QWidget *parent = 0);
	~MainWindow();

private:
	Ui::MainWindowClass ui;


	//-----------------------

	QPushButton *button;
	MainWindow2 w2;

	private slots:
	void showMainWindow2();

	//---------------------
};

#endif // MAINWINDOW_H

在MainWindow.cpp里面写入:



#include "mainwindow.h"

MainWindow::MainWindow(QWidget *parent)
	: QMainWindow(parent)
{
	ui.setupUi(this);//值得注意的是,这个必须在最上面,如此例!

	//----------------------
	button = new QPushButton(this);
	button->setGeometry(QRect(50, 50, 100, 25));
	button->setText("push button");

	connect(button, SIGNAL(clicked()), this, SLOT(showMainWindow2()));
	//------------------------


	

}

MainWindow::~MainWindow()
{

}


void MainWindow::showMainWindow2()
{
	w2.show();
}

运行结果如下:






评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值