Chinaunix首页 | 论坛 | 博客
  • 博客访问: 388613
  • 博文数量: 83
  • 博客积分: 1650
  • 博客等级: 上尉
  • 技术积分: 861
  • 用 户 组: 普通用户
  • 注册时间: 2010-10-18 18:22
文章分类
文章存档

2021年(1)

2016年(1)

2015年(2)

2014年(3)

2013年(12)

2012年(16)

2011年(18)

2010年(30)

分类: LINUX

2011-04-16 00:13:22

和响函数

用来么响,和 hello 代码原来的 Label 钮代替退出程

下:

1 #include <QApplication>

2 #include <QPushButton>

3 int main(int argc, char *argv[])

4 {

5     QApplication app(argc, argv);

6     QPushButton *button = new QPushButton("Quit");

7     QObject::connect(button, SIGNAL(clicked()),

8                     &app, SLOT(quit()));

9     button->show();

10     return app.exec();

11 }

 

作或改变,qt 发出息(signal,当钮时会发

clicked()息,消息接到数在里成为 slot)。样,当一个送时,slot 自动在这中,我们连接了钮的 clicked 信号和 QApplication quit 法如八行示。

程序上代放在 quit.cpp 保存。 依运行

qmake -project qmake

make

程序点击 Quit 序将

阅读(1543) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~