Qt获取QTextEdit中的内容

1.主要用到了QTextEdit中的成员函数:toPlainText();

2.在编辑框中写上内容,点击获取按钮,通过控制台输出获取到的内容。

3.全部源码在附件中,这里之贴出主要实现部分。

Text::Text()
{
    this->resize(600,480);
 
  
    text = new QTextEdit;
    btn = new QPushButton(tr("获取"));
 
  
    connect(btn,SIGNAL(clicked()),this,SLOT(btn_slot()));
 
  
    QVBoxLayout *layout = new QVBoxLayout;
    layout->addWidget(text);
    layout->addWidget(btn);
 
  
    setLayout(layout);
}
 
  
Text::~Text()
{
 
  
}
 
  
//按钮的槽函数
 
  
void Text::btn_slot()
{
    strText = text->toPlainText();
    qDebug() << strText;
}
 
  

你可能感兴趣的:(Qt)