From 7d3da8c304471952189d785fbbd5ed4fe582ef0d Mon Sep 17 00:00:00 2001 From: ZouJin Date: Tue, 26 Sep 2023 23:47:00 +0800 Subject: [PATCH] =?UTF-8?q?=E6=88=90=E5=B0=B1=E8=8E=B7=E5=8F=96=E6=94=AF?= =?UTF-8?q?=E6=8C=81=E6=89=8B=E5=8A=A8=E5=81=9C=E6=AD=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- VPet-Simulator.Core/Display/WorkTimer.xaml.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/VPet-Simulator.Core/Display/WorkTimer.xaml.cs b/VPet-Simulator.Core/Display/WorkTimer.xaml.cs index 909b23b..acb39ad 100644 --- a/VPet-Simulator.Core/Display/WorkTimer.xaml.cs +++ b/VPet-Simulator.Core/Display/WorkTimer.xaml.cs @@ -201,6 +201,11 @@ namespace VPet_Simulator.Core private Work nowWork; public void Stop(Action @then = null) { + if (m.State == Main.WorkingState.Work && nowWork != null) + { + FinishWorkInfo fwi = new FinishWorkInfo(nowWork, GetCount); + E_FinishWork?.Invoke(fwi); + } Visibility = Visibility.Collapsed; m.State = Main.WorkingState.Nomal; m.Display(nowWork.Graph, AnimatType.C_End, then ?? m.DisplayNomal);