Question:
-Vidi failed to get image resource from UI, because it's working on different thread.

- How can I solve this issue?


Answer:
-Use Invoke method to call the thread.
-this.Dispatcher.Invoke(() =>
{
...// your code here.
});