我知道如何在普通的C#应用中编辑字符串
Properties.Settings.Default.String1 = "whatever";
Properties.Settings.Default.Save();
但这似乎不适用于wpf我在wpf apps
中得到这样的字符串ResourceManager rm = new ResourceManager(typeof(Resources));
string string1 = rm.GetString("string_key");
如何在WPF C#中更新字符串资源?
解决方案:我的不好意思是我最近做了很多java并且我混合了资源 设置
答案 0 :(得分:1)
你试过了吗?
更新资源:
Properties.Settings.Default.String1 = "whatever";
Properties.Settings.Default.Save();
阅读资源:
string a String = Properties.Settings.Default.String1;