ThreadSafeGuiUpdate
1 2 3 4 5 6 7
public
void
ThreadSafeGuiUpdate()
{
Dispatcher.Invoke(
new
Action
(() =>
{
// GUI Control Update
}));
}