mirror of
https://github.com/LorisYounger/VPet.git
synced 2024-08-30 18:42:36 +00:00
挪挪
This commit is contained in:
parent
e5f28d6d31
commit
9fc16427d8
@ -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;
|
||||
|
@ -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
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user