Add drag/drop handling

This commit is contained in:
dan_clark@outlook.com
2022-03-23 21:19:23 +00:00
parent 2ac0e3ed26
commit 263704a772
22 changed files with 189 additions and 63 deletions
+2 -2
View File
@@ -7,12 +7,12 @@ namespace TheXamlGuy.TaskbarGroup.Core
{
public class Messenger : IMessenger
{
public IEventAggregatorInvoker invoker;
public IMessageInvoker invoker;
private readonly ConcurrentDictionary<Type, object> subjects = new();
private IScheduler dispatcher;
public Messenger(IEventAggregatorInvoker invoker)
public Messenger(IMessageInvoker invoker)
{
var synchronizationContext = SynchronizationContext.Current;
if (synchronizationContext is null) throw new NullReferenceException(nameof(synchronizationContext));