VS2005,C#winform程序里,奇怪的app.config读写问题
我用代码形式通过Properties.Settings读写app.config文件,可以操作,但是为什么手动打开app.config文件,里面的值没发生预期变化,我在se...
我用代码形式通过Properties.Settings 读写app.config文件,可以操作,但是为什么手动打开app.config文件,里面的值没发生预期变化,我在settings.settings里手动设了变量,范围"scope"我选的用户"user".
代码:
//myvar是我手动在settings.settings设置的字符串变量,在app.config里可以看到设置的效果,和app.config内容是一致的.
private void button1_Click(object sender, EventArgs e)
{
//读操作,将读到的值送textBox1显示
Properties.Settings config = Properties.Settings.Default;
textBox1.Text = config.myvar;
}
private void button1_Click_1(object sender, EventArgs e)
{
//写操作,将textBox2里的值写入myvar
Properties.Settings config = Properties.Settings.Default;
config.myvar = textBox2.Text;
config.Save();
} 展开
代码:
//myvar是我手动在settings.settings设置的字符串变量,在app.config里可以看到设置的效果,和app.config内容是一致的.
private void button1_Click(object sender, EventArgs e)
{
//读操作,将读到的值送textBox1显示
Properties.Settings config = Properties.Settings.Default;
textBox1.Text = config.myvar;
}
private void button1_Click_1(object sender, EventArgs e)
{
//写操作,将textBox2里的值写入myvar
Properties.Settings config = Properties.Settings.Default;
config.myvar = textBox2.Text;
config.Save();
} 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询