在我的项目中,我指的是一个文件夹:
string path=Path.Combine(@"E:\Per\kamlendra.sharma\Windows\main\software\my.software\my.software.Server\Resources", string.Format("LocalizationDictionary.{0}.xaml", SelectedNewLanguage.culture));
但是我不想对这个地址进行硬编码:
@"E:\Per\kamlendra.sharma\Windows\main\software\my.software\my.software.Server\Resources"
谁能建议一个更好的方法?
最佳答案
您可以将应用程序数据存储在app.config中
关于c# - 在WPF中删除硬编码的文件夹路径,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10222399/