10.model/view实例
Posted billxyd
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了10.model/view实例相关的知识,希望对你有一定的参考价值。
任务:给表单的每一列添加列名。
思考:
1.只需要添加一个函数 headerData()。 横向方面添加列名
代码如下:
QVariant MyModel::headerData(int section, Qt::Orientation orientation, int role) const { if(role == Qt::DisplayRole) { if(orientation == Qt::Horizontal) { switch (section) { case 0: return QString("first"); break; case 1: return QString("second"); break; case 2: return QString("third"); break; default: break; } } } return QVariant(); }
以上是关于10.model/view实例的主要内容,如果未能解决你的问题,请参考以下文章