标签: c# app-config
我在App Setting Value中有路径名。现在我想在c#中的文本框中显示路径名。但我不知道这样做。所以请帮助我。谢谢。
答案 0 :(得分:1)
您可以使用System.Configuration.ConfigurationManager及其AppSettings:
System.Configuration.ConfigurationManager
AppSettings
textBox1.Text = ConfigurationManager.AppSettings["Path"];
更改密钥来自"路径"根据您的配置文件。