Med Popups och nytt system för släckning, men utan hantering av rätt popup
This commit is contained in:
@ -2,10 +2,11 @@
|
||||
|
||||
public class PopupEventHub : IPopupEventHub
|
||||
{
|
||||
public event EventHandler? InfoPopupCloseRequested;
|
||||
public event EventHandler<PopupCloseEventArgs>? InfoPopupCloseRequested;
|
||||
|
||||
public void RaiseInfoPopupClose()
|
||||
public void RaiseInfoPopupClose(string popupId)
|
||||
{
|
||||
InfoPopupCloseRequested?.Invoke(this, EventArgs.Empty);
|
||||
InfoPopupCloseRequested?.Invoke(this, new PopupCloseEventArgs(popupId));
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user