This commit is contained in:
YukkuriC 2023-09-21 22:41:35 +08:00 committed by ZouJin
parent e5f28d6d31
commit 9fc16427d8
2 changed files with 9 additions and 8 deletions

View File

@ -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;

View File

@ -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
{