using System; using System.Windows; using System.Windows.Interop; namespace MSFSPopoutPanelManager.WpfApp { /// /// Interaction logic for PanelCoorOverlay.xaml /// public partial class PanelCoorOverlay : Window { public bool IsEditingPanelLocation { get; set; } public IntPtr WindowHandle { get; set; } public PanelCoorOverlay(int panelIndex) { InitializeComponent(); this.lblPanelIndex.Content = panelIndex; IsEditingPanelLocation = false; } private void Window_MouseMove(object sender, System.Windows.Input.MouseEventArgs e) { if (IsEditingPanelLocation && e.LeftButton == System.Windows.Input.MouseButtonState.Pressed) { this.DragMove(); } } } }