爱笑航空

文章
8
资源
0
加入时间
2年10月21天

Qt中sender()函数的用法

你在一个槽里面,调用这个函数,返回的就是你信号来源的对象;QPushButton *aaaa = new QPushButton(this);比如 connect(aaaaa, SIGNAL(Click()), this, SLOT(Onaaaaa());void Onaaaaa(){QPushButton *ccc = (QPushButton*) sender();}