using Windows.Foundation;
using XFEExtension.NetCore.WinUIHelper.Interface.Services;
namespace HaloPixelToolBox.Client.Interface.Services;
public interface ICloseWindowService : IGlobalService
{
event TypedEventHandler<object, WindowEventArgs> Closed;
void Initialize(Window window);
}
using Windows.Foundation;
using XFEExtension.NetCore.WinUIHelper.Interface.Services;
namespace HaloPixelToolBox.Client.Interface.Services;
public interface ICloseWindowService : IGlobalService
{
event TypedEventHandler<object, WindowEventArgs> Closed;
void Initialize(Window window);
}