如何在wp8中更改StaticResource的值
本文关键字:StaticResource 的值 wp8 | 更新日期: 2023-09-27 17:53:55
我有静态资源在我的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
如何更改字段的值?
据我所知,您无法在运行时更改该值。但是你可以这样做:
App.Current.Resources.Remove("Test");
App.Current.Resources.Add("Test", 120);