Moved all PInvokes to a lower class without any relianceon WPF, NotificationIconHelper, TaskbarHelper, SystemPersonalisationHelper are WPF window no more

This commit is contained in:
Daniel Clark
2021-02-13 17:08:00 +00:00
parent 20441d5749
commit ce314678b5
57 changed files with 800 additions and 588 deletions
@@ -0,0 +1,11 @@
using System;
namespace NotificationFlyout.Shared.UI.Helpers
{
public class NotificationIconInvokedEventArgs : EventArgs
{
internal NotificationIconInvokedEventArgs(PointerButton pointerButton) => PointerButton = pointerButton;
public PointerButton PointerButton { get; private set; }
}
}