首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > QT开发 >

textChanged()信号有关问题

2012-09-25 
textChanged()信号问题,我的connect(m_lineEdit,SIGNAL(textChanged()),this,SLOT(showneedit))void show

textChanged()信号问题,
我的connect(m_lineEdit,SIGNAL(textChanged()),this,SLOT(showneedit));

void showneedit()
{
  m_linezhon=new QLineEdit(this);
  m_linezhon->show();
}

我的目的是当我的编辑框里的字符一变动,就调用我的槽,在我的DIALOG里动态的生成一个新的编辑框,不知道为什么触发不了。

[解决办法]
我试了下 可以啊

private slots:
void showEdit();

///////////////////////////////////////////////////////////////////

connect(ui->lineEdit, SIGNAL(textChanged(QString)), this, SLOT(showEdit()));

///////////////////////////////////////////////////////////////////

void Widget::showEdit()
{
QLineEdit* edit = new QLineEdit(this);
edit->show();
}

热点排行