Qt -- button的使用

本文介绍如何使用C++创建一个简单的主窗口应用,通过按钮点击实现关闭窗口的功能,包括代码实现、编译流程及运行步骤。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

创建一个button部件,作为主窗口,点击该button退出窗体;

quit.cpp

//使用按键作为主窗口,带有退出功能
#include <QApplication>
#include <QPushButton>

int main(int argc,char *argv[])
{
        QApplication app(argc,argv);                                   //创建QApplication对象app管理应用程序
        QPushButton *button = new QPushButton("quit");                 //创建一个button部件
        QObject::connect(button,SIGNAL(clicked()),&app,SLOT(quit()));  //创建一个连接,使button与app建立响应
        button->show();                                                //显示button对象
        return app.exec();    //进入循环主体
}

1.qmake -project    --- 生成工程文件

2.qmake quit.pro    ---生成一个makefile

3.make                   ---编译

4.debug\quit.exe   --- 运行程序



F:\QT_Program\test01\quit>qmake -project


F:\QT_Program\test01\quit>qmake quit.pro


F:\QT_Program\test01\quit>make
mingw32-make -f Makefile.Debug
mingw32-make[1]: Entering directory `F:/QT_Program/test01/quit'
g++ -c -g -frtti -fexceptions -mthreads -Wall -DUNICODE -DQT_LARGEFILE_SUPPORT -
DQT_DLL -DQT_GUI_LIB -DQT_CORE_LIB -DQT_HAVE_MMX -DQT_HAVE_3DNOW -DQT_HAVE_SSE -
DQT_HAVE_MMXEXT -DQT_HAVE_SSE2 -DQT_THREAD_SUPPORT -DQT_NEEDS_QMAIN -I"d:\Qt\4.7
.3\include\QtCore" -I"d:\Qt\4.7.3\include\QtGui" -I"d:\Qt\4.7.3\include" -I"." -
I"d:\Qt\4.7.3\include\ActiveQt" -I"debug" -I"d:\Qt\4.7.3\mkspecs\win32-g++" -o d
ebug\quit.o quit.cpp
g++ -enable-stdcall-fixup -Wl,-enable-auto-import -Wl,-enable-runtime-pseudo-rel
oc -mthreads -Wl -Wl,-subsystem,windows -o debug\quit.exe debug/quit.o  -L"d:\Qt
\4.7.3\lib" -lmingw32 -lqtmaind -lQtGuid4 -lQtCored4
mingw32-make[1]: Leaving directory `F:/QT_Program/test01/quit'


F:\QT_Program\test01\quit>debug\quit.exe


F:\QT_Program\test01\quit>






评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值