我有下面的代码非常简单,带有 wp7 中的样式资源,
<Style x:Name="image_find" x:Key="ImageFind1" TargetType="Image">
<Setter Property="Source" Value="display/pen.png"/>
</Style>
我想更改 setter 的源值,例如。“display/tool.png”当我想在我的应用程序代码中运行时,请记住我需要风格的图像蜂鸣:)
我正在运行这样的东西,
image_find.Setters.SetValue(Image.SourceProperty, "display/tool.png");
或类似的东西,
style = App.Current.Resources["image_find1"] as Style;
style.Setters.SetValue(Image.SourceProperty, "display/tool.png");`
我得到NullReferenceException
了,应用程序中断了......