在我的 WP7 应用程序中,所有页面都使用 ImageBrush 作为我在 ResourceDictionay 中定义的背景。此 ResourceDictionary 通过 App.xaml 全局合并。ResourceDictionary 中的 ImageBrush 定义如下:
<ImageBrush x:Key="PhonePageBackground" ImageSource="/Background1.jpg"/>
我试图在运行时更新 ImageBrush 的 ImageSource,但它不起作用。
进行一些测试,我有一个页面上有一个按钮来更改背景,我意识到下面的代码工作正常:
ImageBrush image;
public MainPage()
{
InitializeComponent();
image = new ImageBrush { ImageSource = new BitmapImage(new Uri("/Background1.jpg", UriKind.Relative)) };
LayoutRoot.Background = image;
}
private void button1_Click(object sender, RoutedEventArgs e)
{
image.ImageSource = new BitmapImage(new Uri("/Background2.jpg", UriKind.Relative));
}
但是下面的代码,我使用字典中的 ImageBrush,不起作用。页面的背景变成透明的,就好像找不到图片一样:
ImageBrush image;
public MainPage()
{
InitializeComponent();
image = (ImageBrush)Application.Current.Resources["PhonePageBackground"];
LayoutRoot.Background = image;
}
private void button1_Click(object sender, RoutedEventArgs e)
{
image.ImageSource = new BitmapImage(new Uri("/Background2.jpg", UriKind.Relative));
}
两个图像(Background1.jpg 和 Background2.jpg)构建操作都设置为内容。我已经使用资源集进行了测试,但没有成功。
知道为什么会出现这种行为吗?