MemoizR icon indicating copy to clipboard operation
MemoizR copied to clipboard

Add WPF lib that works on thread pool except for the reaction

Open timonkrebs opened this issue 1 year ago • 1 comments

In WPF only the state relevant for the ui should be handeled on the UI thread. Every thing else should be done on workers.

Application.Current.Dispatcher.Invoke(new Action(() => { /* Your code here */ }));

timonkrebs avatar Sep 26 '23 22:09 timonkrebs