Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想制作一个类似于组合框的列表框,但没有下拉菜单,只显示带有滚动条的整个列表?如果需要,还希望能够单击并突出显示一行以删除该项目。
QComboBox *lv = new QComboBox(this); lv->setGeometry(QRect(QPoint(0,100), QSize(100, 50))); lv->addItem("hello1"); lv->addItem("hello2"); lv->addItem("hello3"); lv->addItem("hello4");
为此,您将需要使用QListWidget和QListWidgetItem。