diff --git a/VPet-Simulator.Windows/Function/MWController.cs b/VPet-Simulator.Windows/Function/MWController.cs index 4cebeeb..b5850cc 100644 --- a/VPet-Simulator.Windows/Function/MWController.cs +++ b/VPet-Simulator.Windows/Function/MWController.cs @@ -16,13 +16,6 @@ namespace VPet_Simulator.Windows this.mw = mw; _isPrimaryScreen = mw.Set.MoveAreaDefault; _screenBorder = mw.Set.MoveArea; - - // control position inside bounds - double dist; - if ((dist = GetWindowsDistanceLeft()) < 0) mw.Left -= dist; - if ((dist = GetWindowsDistanceRight()) < 0) mw.Left += dist; - if ((dist = GetWindowsDistanceUp()) < 0) mw.Top -= dist; - if ((dist = GetWindowsDistanceDown()) < 0) mw.Top += dist; } private Rectangle _screenBorder; diff --git a/VPet-Simulator.Windows/MainWindow.xaml.cs b/VPet-Simulator.Windows/MainWindow.xaml.cs index c46ad38..989215e 100644 --- a/VPet-Simulator.Windows/MainWindow.xaml.cs +++ b/VPet-Simulator.Windows/MainWindow.xaml.cs @@ -116,6 +116,15 @@ namespace VPet_Simulator.Windows var point = Set.StartRecordPoint; Left = point.X; Top = point.Y; } + + // control position inside bounds + Core.Controller = new MWController(this); + double dist; + if ((dist = Core.Controller.GetWindowsDistanceLeft()) < 0) Left -= dist; + if ((dist = Core.Controller.GetWindowsDistanceRight()) < 0) Left += dist; + if ((dist = Core.Controller.GetWindowsDistanceUp()) < 0) Top -= dist; + if ((dist = Core.Controller.GetWindowsDistanceDown()) < 0) Top += dist; + if (Set.TopMost) { Topmost = true; @@ -396,7 +405,6 @@ namespace VPet_Simulator.Windows await Dispatcher.InvokeAsync(new Action(() => LoadingText.Content = "尝试加载游戏存档".Translate())); //加载存档 - Core.Controller = new MWController(this); if (File.Exists(ExtensionValue.BaseDirectory + @"\Save.lps")) try {