※ 引述《Serge45 (QAQ)》之铭言:
: ※ 引述《MOONY135 (谈无欲)》之铭言:
: : 开发平台(Platform): (Ex: VC++, GCC, Linux, ...)
: : VS 2015 C++
: : 额外使用到的函数库(Library Used): (Ex: OpenGL, ...)
: : QT 5.7
: : 问题(Question):
: : 小弟刚从C#过来
抱歉再问一个问题
vs中 如果是使用QT去拉画面
在ui_mainwindow.h 如果有一个pushButton
那就会出现下列的code
pushButton = new QPushButton(centralWidget);
pushButton->setObjectName(QStringLiteral("pushButton"));
pushButton->setGeometry(QRect(80, 150, 93, 28));
但如果是手工打造的话 通常还要自己加slot
然后必须要写connect
connect(pushBotton1, SIGNAL(clicked()), this, SLOT(changeCheckBox()));
但我好像找不到他的connect写在哪...