using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; using Tango.Core.Commands; namespace Tango.FSE.Common.WindowsManager { public interface IWindowsManager { void DetachToWindow(FrameworkElement element); void AttachFromWindow(FrameworkElement element); void CloseAll(); RelayCommand DetachToWindowCommand { get; } RelayCommand AttachFromWindowCommand { get; } } }