Custom Publication Marshaling:
Could you please go a little more into detail on how to use your EventAggregator in a multithreaded app? Atm I'm going with e.g.:
System.Windows.Application.Current.Dispatcher.Invoke((Action)(() =>
{
eventAggregator.Publish(new MVVM_AddOns.EventArguments.AddLogEntryEventArgs(this)
{
logText = "log Text"
});
}));
to post something back to the UI Thread. But at some points it does not happen at all (wrong Dispatcher I think...) so I'm looking for the way it's meant to be implemented.
Thanks
↧