on_objectName_signal
[static] void QMetaObject::connectSlotsByName(QObject *object)
void on_<object name>_<signal name>(<signal parameters>);
eg.
void on_button1_clicked();
QMetaObject::connectSlotsByName(this);
执行上面一个语句就会去连接 this 对象中的信号和槽
标签:对象 信号和槽 gpo down div this meta tao static
[static] void QMetaObject::connectSlotsByName(QObject *object)
void on_<object name>_<signal name>(<signal parameters>);
eg.
void on_button1_clicked();
QMetaObject::connectSlotsByName(this);
执行上面一个语句就会去连接 this 对象中的信号和槽
标签:对象 信号和槽 gpo down div this meta tao static
原文地址:http://www.cnblogs.com/cheungxiongwei/p/8093355.html