gpt4 book ai didi

c# - .net 桌面应用程序 - 如何存储/更改应用程序设置或连接字符串?

转载 作者:行者123 更新时间:2023-11-30 17:23:51 24 4
gpt4 key购买 nike

我需要让用户能够更改应用程序设置,在本例中是应用程序数据库的位置。我注意到应用程序设置在运行时只读,但这需要在应用程序范围内,而不是特定于用户的。如何在运行时可更改的 windows.forms 中保留应用程序范围的连接字符串?

最佳答案

你可以使用

ConfigurationManager.AppSettings.Set()

还有

ConnectionStringSettings.ConnectionString Property

也可以设置。

Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
config.AppSettings.Settings.Add("test","tada");
config.Save(ConfigurationSaveMode.Minimal, true);

关于c# - .net 桌面应用程序 - 如何存储/更改应用程序设置或连接字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1796057/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com