






















MSVC编译,QT4.4.3,用了两个小时。 比起QGIS的编译就算快的了。
看了官方的tutor
file:///C:/qt/4.4.3/doc/html/tutorials-addressbook.html
很简单易懂。
声明slot(在.h文件中)
public slots:
void findClicked();
定义signal(在.cpp的构造函数中)
connect(findButton, SIGNAL(clicked()), this, SLOT(findClicked()));
connect(findButton, SIGNAL(clicked()), this, SLOT(accept()));
用官方的几个example 来做基础动手干干。
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。