我想知道如何在按钮单击时在 textBox 中设置默认文本。因此,当用户关闭表单并再次打开它时,textBoxes 中的文本将保留。即使他关闭了整个应用程序。我在下面尝试了这段代码,但我认为我的解决方案与可行的解决方案相去甚远。非常感谢您的参与。
private void btn_savetext_Click(object sender, EventArgs e)
{
this.textBox1.Text = textBox1.Text;
this.textBox2.Text = textBox2.Text;
this.textBox3.Text = textBox3.Text;
this.textBox4.Text = textBox4.Text;
}