逛奔的蜗牛

我不聪明,但我会很努力

   ::  :: 新随笔 ::  ::  :: 管理 ::

#include "widget.h"

#include "ui_widget.h"

#include <QtGui/QCompleter>

#include <QStringList>


Widget::Widget(QWidget *parent)

    : QWidget(parent), ui(new Ui::Widget) {

    ui->setupUi(this);


    QStringList strings;

    strings << "Biao" << "Biao Huang" << "Mac" << "MacBook" << "MacBook Pro" << "Mac Pro";

    completer = new QCompleter(strings, this);


    ui->comboBox->clear();

    ui->comboBox->addItems(strings);

    ui->comboBox->setEditable(true);

    ui->comboBox->setCompleter(completer);

}


Widget::~Widget() {

    delete ui;

    delete completer;

}


posted on 2009-05-23 16:55 逛奔的蜗牛 阅读(3111) 评论(1)  编辑 收藏 引用 所属分类: Qt

评论

# re: Qt: 输入内容, 列出可选的项: QComboBox 2009-05-23 17:01 暗金装备
都是QCompleter的功劳.  回复  更多评论
  


只有注册用户登录后才能发表评论。
网站导航: 博客园   IT新闻   BlogJava   博问   Chat2DB   管理