好的,我有 5 个文本框,我使用 StreamWriter 类将文本框的文本保存到 .txt 文件中。
但是我无法将文本从 .txt 文件中检索回文本框中,知道该怎么做吗?
嗯,这就是我写入 .txt 文件的方式。
String^ writedata = textBox1->Text +";" +
textBox2->Text + ";" +
textBox3->Text + ";" +
textBox4->Text + ";" +
textBox5->Text + ";" +
textBox6->Text + ";" +
textBox7->Text + ";" +
textBox8->Text;
StreamWriter^ SR = gcnew StreamWriter("C:\\Settings.txt");
SR->Write(writedata);
SR->Close();