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