由 123456 » 週一 6月 11, 2007 5:15 pm
void find1(QLabel *label ){
bool ok;
if(ok){ label->setText("10"); }
};
int main(int argc, char *argv[])
{
QPushButton *button=new QPushButton("ok",mywidget);
QLabel *label1=new QLabel(mywidget);
label1->setText("5");
QObject::connect(button,SIGNAL(click()),mywidget,SLOT(find1(label1)));
mywidget->show();
請問一下為何不能 button 按下去 label1就會變成"10"煩請各位高手 指點