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