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