This commit is contained in:
tanglong 2025-09-26 17:00:43 +08:00
parent 1a4490a61c
commit 6bcca7f204

View File

@ -80,6 +80,7 @@ namespace Wpf_AiSportsMicrospace
_webcamClient.StartExtract();
StartFrameProcessing();
coverFlow.ProgressCompleted += CoverFlow_ProgressCompleted;
}
@ -105,11 +106,11 @@ namespace Wpf_AiSportsMicrospace
string uri = item.ImageUri.ToString();
Window newWindow = null;
if (uri.EndsWith("1.jpg"))
if (uri.EndsWith("home_test.png"))
newWindow = new GroupJumpRope();
else if (uri.EndsWith("2.jpg"))
else if (uri.EndsWith("home_play.png"))
newWindow = new GroupJumpRope();
else if (uri.EndsWith("3.jpg"))
else if (uri.EndsWith("home_history.png"))
newWindow = new GroupJumpRope();
if (newWindow != null)