我的app.xaml中有静态资源,我想更改值,但它给出了以下例外:
<Application.Resources>
<sys:Int32 x:Key="Test">80</sys:Int32>
</Application.Resources>
在后面的代码中更改值
App.Current.Resources["Test"] = 120;
异常
The method or operation is not implemented
如何更改字段的值?
答案 0 :(得分:0)
据我所知,你无法在运行时更改该值。但你可以这样做:
App.Current.Resources.Remove("Test");
App.Current.Resources.Add("Test", 120);