0
我的應用程序在QLineEdit中輸入Id和Birthdate的數據,並以http post請求的形式發送表單數據。 當應用程序關閉然後重新啓動時,最後輸入的輸入可能會保留嗎?記住最後的QLineEdit數據
我的應用程序在QLineEdit中輸入Id和Birthdate的數據,並以http post請求的形式發送表單數據。 當應用程序關閉然後重新啓動時,最後輸入的輸入可能會保留嗎?記住最後的QLineEdit數據
簡短的回答:使用QSettings
例如:
QSettings settings(QSettings::UserScope);
settings.setValue("Birthdate", date);
然後...
QSettings settings(QSettings::UserScope);
dateLineEdit->setText(settings.value("Birthdate").toString());
查看文檔中有關範圍和文件格式,並確定使用適合您的需求最好的。