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.
});
Modified on: Mon, 2 Mar, 2020 at 2:28 PM
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.
});
Did you find it helpful? Yes No
Send feedback