Nu fungerar Popupen och den går att stänga
This commit is contained in:
11
GreadyPoang.Services/Services/Implements/PopupEventHub.cs
Normal file
11
GreadyPoang.Services/Services/Implements/PopupEventHub.cs
Normal file
@ -0,0 +1,11 @@
|
||||
namespace GreadyPoang.Services;
|
||||
|
||||
public class PopupEventHub : IPopupEventHub
|
||||
{
|
||||
public event EventHandler? InfoPopupCloseRequested;
|
||||
|
||||
public void RaiseInfoPopupClose()
|
||||
{
|
||||
InfoPopupCloseRequested?.Invoke(this, EventArgs.Empty);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user