QListView中的QT4 QstringListModel
|
这是我的第一个QT问题-我通常是C#程序员,所以请原谅我提出一个愚蠢的问题,我敢肯定我有一个非常简单的答案,但我似乎找不到:
我想将项目添加到列表中,现在让我们说它们是字符串。
我有一个QListView:
UI->listView
,一个QStringList和QStringListModel:
stringList = new QStringList();
stringList->append(\"ABC\");
stringList->append(\"123\");
listModel = new QStringListModel(*stringList, NULL);
ui->listView->setModel(listModel);
stringList->append(\"xyz\");
本示例编译并禁用列表中的\“ ABC \”和\“ 123 \”,而不是\“ xyz \”。为什么不?我是否需要以某种方式重绘listView?我对NULL做错了吗?
谢谢。
没有找到相关结果
已邀请:
2 个回复
桔马牛
,您需要修改模型:
搜洼挂时