要在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)的文本設置為指定字符串。運行代碼后,標簽和文本框將顯示相應的文本。