re-wired opened and closed events

This commit is contained in:
Daniel Clark
2021-02-27 12:03:36 +00:00
parent 240609270e
commit 5db230c83c
2 changed files with 7 additions and 19 deletions
@@ -30,9 +30,7 @@ namespace TheXamlGuy.NotificationFlyout.Uwp.UI.Controls
public NotificationFlyout() => DefaultStyleKey = typeof(NotificationFlyout);
public event EventHandler<object> Closed;
public event TypedEventHandler<NotificationFlyout, NotificationFlyoutClosingEventArgs> Closing;
public event EventHandler<object> Opened;
public event EventHandler<object> Opening;
internal event EventHandler IconSourceChanged;
@@ -139,16 +137,12 @@ namespace TheXamlGuy.NotificationFlyout.Uwp.UI.Controls
sender?.OnIconPropertyChanged();
}
private void InvokeClosedEvent(object obj) => Closed?.Invoke(this, obj);
private void InvokeClosingEvent(NotificationFlyoutClosingEventArgs eventArgs) => Closing?.Invoke(this, eventArgs);
private void InvokeOpenedEvent(object obj) => Opened?.Invoke(this, obj);
private void InvokeOpeningEvent(object obj) => Opening?.Invoke(this, obj);
private void OnIconPropertyChanged() => IconSourceChanged?.Invoke(this, EventArgs.Empty);
private void OnPopupClosed(object sender, object args) => Opened?.Invoke(this, args);
private void OnPopupOpened(object sender, object args) => Closed?.Invoke(this, args);
private void PreparePopup()
{
_popup = new Popup
@@ -159,6 +153,9 @@ namespace TheXamlGuy.NotificationFlyout.Uwp.UI.Controls
HorizontalOffset = -1,
VerticalOffset = -1
};
_popup.Opened += OnPopupOpened;
_popup.Closed += OnPopupClosed;
}
}
}
@@ -1,9 +0,0 @@
using System;
namespace TheXamlGuy.NotificationFlyout.Uwp.UI.Controls
{
public sealed class NotificationFlyoutClosingEventArgs : EventArgs
{
public bool Cancel { get; set; }
}
}