首页 > 代码库 > qt5 + vs2015自定义控件错误:undefend interface

qt5 + vs2015自定义控件错误:undefend interface

控件中编译时因为是把所有的单个控件集成到一个lib中,所以会引用#include<QDesignerCustomWidgetInterface>以及#include<QDesignerCustomWidgetInterface>编译时一个错误undefend interface。

1、在vs配置路径中已经设置了QtUiPlugin的路径。在文件中包含#include<QDesignerCustomWidgetInterface>头文件,能够直接vs中能够直接转到该头文件的内容,编译报错。

2、把该头文件改成#include"customwidget.h",vs路径中还是设置其所在的头文件路径,编译后还是报错。

3、把customwidget.h文件复制到工程目录下,编译,结果正确。

 

qt5 + vs2015自定义控件错误:undefend interface