在 XAML 中,您可以创建一个BitmapImage
with CreateOptions
set,如下所示
<BitmapImage UriSource="{Binding ImageUrl}" CreateOptions="BackgroundCreation, IgnoreImageCache"/>
如何以CreateOptions
编程方式在 C# 中指定那些?
BitmapImage bimg = new BitmapImage(){CreateOptions = BitmapCreateOptions.BackgroundCreation ???}
,如何设置IgnoreImageCache?