要在Qt的文本框中添加文字,可以使用setText()
方法将文本设置为特定的字符串。下面是一个简单的示例代码:
#include <QtWidgets>
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
QWidget window;
QVBoxLayout layout(&window);
QLabel label;
label.setText("Hello, World!");
QLineEdit textEdit;
textEdit.setText("Qt Textbox");
layout.addWidget(&label);
layout.addWidget(&textEdit);
window.setLayout(&layout);
window.show();
return app.exec();
}
在上面的示例中,使用setText()
方法将标签(label)和文本框(textEdit)的文本设置为指定字符串。运行代码后,标签和文本框将显示相应的文本。