You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
AppFlow/FITK_Component/FITKWidget/FITKComboBox.cpp

18 lines
260 B
C++

#include "FITKComboBox.h"
#include <QListView>
FITKComboBox::FITKComboBox(QWidget* p)
: QComboBox(p)
{
//创建并设置为Listview
QListView * lv = new QListView(this);
this->setView(lv);
}
//虚函数
FITKComboBox::~FITKComboBox()
{
}