一杯清酒邀明月
天下本无事,庸人扰之而烦耳。
 1 void AddCheckBox()
 2 {
 3   QStringList list;
 4   list<<"one"<<"two"<<"three";
 5   foreach(QString number,list)
 6   {
 7     QCheckBox *button = new QCheckBox(number,this); //widget添加button
 8     connect(button,SIGNAL(clicked()),this,SLOT(getButtonText()));
 9   }
10 }
11 void getButtonText()
12 {
13   QCheckBox *button = (QCheckBox * )(sender()); //关键一步是利用sender()
14   qDebug()<<"button text:"<<button->text();
15 }

 

posted on 2021-03-30 09:55  一杯清酒邀明月  阅读(2118)  评论(0编辑  收藏  举报