1

好吧,我尝试将 QMaemo5ListPickSelector 与 QMaemo5ValueButton 一起使用,但是当我单击按钮时,会弹出一个对话框,但它没有任何列表..

这是我的意思的图片:

替代文字

这是我用来启动上述两个组件并填充列表的代码:

QMaemo5ValueButton *x = new QMaemo5ValueButton("Testing .. !");
QStandardItemModel model (10,2);
int j,k;
for(j=0;j<=1;j++)
{
    k=0;
    for(i=0;i<=9;i++)
    {
        QStandardItem *item = new QStandardItem(QString("%0").arg(k));
        k+=5;
        model.setItem(i,j,item);
    }
}
x->setValueLayout(QMaemo5ValueButton::ValueBesideText);
QMaemo5ListPickSelector *sel = new QMaemo5ListPickSelector();
sel->setModel(&model);

x->setPickSelector(sel);
hbox->addWidget(x);

我会说我可能错误地填充了列表..

4

0 回答 0