What's the best way to asynchronously load an BitmapImage in C# using WPF? It seems like many solution exist, but does a standard pattern or best practice exist?
Thanks!
|
|
|
|
|
|
|
To elaborate onto aku's answer, here is a small example as to where to set the IsAsync:
That's what you would do in XAML. |
||
|
|
|
|
Use or extend System.ComponentModel.BackgroundWorker: Personally, I find this to be the easiest way to perform asynchronous operations in client apps. (I've used this in WinForms, but not WPF. I'm assuming this will work in WPF as well.) I usually extend Backgroundworker, but you dont' have to.
This is how you would use it in your form:
|
||
|
|
|
|
Assuming you're using data binding, setting Binding.IsAsync property to True seems to be a standard way to achieve this. If you're loading the bitmap in the code-behind file using background thread + Dispatcher object is a common way to update UI asynchronous |
||
|
|