BitmapImage
XAML では、次のようにwithCreateOptions
セットを作成できます。
<BitmapImage UriSource="{Binding ImageUrl}" CreateOptions="BackgroundCreation, IgnoreImageCache"/>
CreateOptions
プログラムでC#でそれらを指定する方法は?
BitmapImage bimg = new BitmapImage(){CreateOptions = BitmapCreateOptions.BackgroundCreation ???}
、IgnoreImageCache を設定する方法は?