我在wpf中有网格。我想用支持gif图像的图像来改变网格的背景。 我已经使用以下代码将图像设置为网格:
ImageBrush myBrush = new ImageBrush();
myBrush.ImageSource = new BitmapImage(new Uri(ImagePath));
this.GridName.Background = myBrush;
所以我在这里如何改变支持GIF图像的背景行为;