这段代码有什么错误

发布于 2024-09-04 01:40:49 字数 1049 浏览 2 评论 0原文

极客们可以告诉我这个问题的解决方案吗,

我有一个列表视图,当我点击任何项目时,应该会出现一个弹出列表,之后根据弹出列表中选定的项目我将更新我的用户界面。

我编写了一段代码,用于在点击我视图中的任何项目后获取弹出列表。

我的问题是,一旦我点击任何项目,就会得到一个弹出列表,我也可以从弹出列表中选择该项目。一旦我在弹出列表中按“确定”,我也会得到一个带有组合框的列表,我不知道出了什么问题。 这是我获取弹出列表的代码,请在我错的地方帮助我

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

吻泪 2024-09-11 01:40:49

我找到了答案,
我需要从上面的源代码中删除这一行

QString item = inputdialog.getItem(this,        tr("QInputDialog::getItem()"),tr("Season:"), items, 0, false, &ok);

i found answer,
i need to remove this line from my above source code

QString item = inputdialog.getItem(this,        tr("QInputDialog::getItem()"),tr("Season:"), items, 0, false, &ok);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文