Qt
花花呀123456
爱好c,c++
展开
-
QStandardItemModel 自动被析构的问题
有一个类继承自 QStandardItemModel class XXXMessageModel : public QStandardItemModel,然后用来提供model 数据给qml 里面的listView ,结果发现总是会被自动析构,然后warning : RTTI symbol not found for class 'QObject' 查原创 2015-12-14 16:22:16 · 2698 阅读 · 0 评论 -
Qml TabView 如何动态创建Tab
TabView { id: pd_top_tabView anchors.left: parent.left anchors.right: parent.right anchors.top: parent.top anchors.topMargin: 10原创 2016-03-26 09:55:58 · 7171 阅读 · 0 评论 -
QThread 正确使用方法
A short historyLong long ago, subclass QThread and reimplement its run() function is the only recommended way of using QThread. This is rather intuitive and easy to used. But when SLOTS and Qt e转载 2016-09-27 20:51:49 · 4198 阅读 · 1 评论 -
VS2013 + Qt 提示 There's no Qt version assigned to this project for platform Win32
在VS2013 配置完 Qt后,启动项目弹出提示: 原因在于, 没有给项目也设置Qt。 项目右键菜单, 选择 “Qt Project Settings” ,会显示如图的框: 将最后一个 Version字段, 选择指定的Qt 版本即可。原创 2017-02-13 13:42:25 · 24106 阅读 · 1 评论