Posted on 2009-07-04 22:06
魔のkyo 阅读(4716)
评论(0) 编辑 收藏 引用
解决方法:
在插入之前调用
void QAbstractItemModel::beginInsertRows ( const QModelIndex & parent, int first, int last );
在插入之后调用
void QAbstractItemModel::endInsertRows () ;
类似的还有
void QAbstractItemModel::beginInsertColumns ( const QModelIndex & parent, int first, int last );
void QAbstractItemModel::endInsertColumns ();
void QAbstractItemModel::beginRemoveColumns ( const QModelIndex & parent, int first, int last );
void QAbstractItemModel::endRemoveColumns ();
void QAbstractItemModel::beginRemoveRows ( const QModelIndex & parent, int first, int last );
void QAbstractItemModel::endRemoveRows ();