这段代码有什么错误
极客们可以告诉我这个问题的解决方案吗,
我有一个列表视图,当我点击任何项目时,应该会出现一个弹出列表,之后根据弹出列表中选定的项目我将更新我的用户界面。
我编写了一段代码,用于在点击我视图中的任何项目后获取弹出列表。
我的问题是,一旦我点击任何项目,就会得到一个弹出列表,我也可以从弹出列表中选择该项目。一旦我在弹出列表中按“确定”,我也会得到一个带有组合框的列表,我不知道出了什么问题。 这是我获取弹出列表的代码,请在我错的地方帮助我
void myPopupWindow::Popupdialog()
{
QInputDialog inputdialog;
QStringList items;
items << tr("Spring") << tr("Summer");
// bool val = QObject::connect(inputdialog,SIGNAL(textValueChanged(const QString &text)),this,SLOT(selText( const QString & text )));
bool val = QObject::connect(&inputdialog,SIGNAL(textValueChanged(const QString &)),this,SLOT(selText(const QString &)));
bool ok;
inputdialog.setOptions(QInputDialog::UseListViewForComboBoxItems);
inputdialog.setComboBoxItems(items);
inputdialog.exec();
QString item = inputdialog.getItem(this, tr("QInputDialog::getItem()"),tr("Season:"), items, 0, false, &ok);
}
can you geeks can tell me the solution for this,
i have a listview, when i tap on any item,a pop-up list should appear, after that based on the selected item from pop-up list i will update my UI.
i have written a code to get the popup list after tapping on any item from my view.
my problem is once i tap on any item, will get a popup list and i will also be able to select the item from popup list. once i press Ok in popup list i will ge a list with combo box also, i dont no what is wrong..
here is my code to get the popup list, please assist me where i am wrong
void myPopupWindow::Popupdialog()
{
QInputDialog inputdialog;
QStringList items;
items << tr("Spring") << tr("Summer");
// bool val = QObject::connect(inputdialog,SIGNAL(textValueChanged(const QString &text)),this,SLOT(selText( const QString & text )));
bool val = QObject::connect(&inputdialog,SIGNAL(textValueChanged(const QString &)),this,SLOT(selText(const QString &)));
bool ok;
inputdialog.setOptions(QInputDialog::UseListViewForComboBoxItems);
inputdialog.setComboBoxItems(items);
inputdialog.exec();
QString item = inputdialog.getItem(this, tr("QInputDialog::getItem()"),tr("Season:"), items, 0, false, &ok);
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了答案,
我需要从上面的源代码中删除这一行
i found answer,
i need to remove this line from my above source code