Compare commits

...

2 Commits

Author SHA1 Message Date
ltx
3d67f9d28b Merge branch 'dev' of http://8.153.108.90:3000/YD/Wpf_AiSportsMicrospace into dev 2025-10-20 14:45:20 +08:00
ltx
fd9ec745b6 update:bug 2025-10-20 14:45:14 +08:00
2 changed files with 4 additions and 4 deletions

View File

@ -35,7 +35,7 @@
</Grid>
<!--排行榜-->
<Grid x:Name="RankingGrid" Margin="0,0,0,0" Height="1080" Width="1920" Visibility="Visible">
<Grid x:Name="RankingGrid" Margin="0,0,0,0" Height="1080" Width="1920" Visibility="Hidden">
<Image
Source="/Resources/Img/test_img/one_rope/finish_img/finish_bg.png"
HorizontalAlignment="Center"

View File

@ -319,9 +319,9 @@ namespace Wpf_AiSportsMicrospace.Views.JumpRope
{
double left = _musicJumpRopeContext.UserBeatSyncList[0];
double right = _musicJumpRopeContext.UserBeatSyncList[1];
score3.Text = (left * 10).ToString();
score4.Text = (right * 10).ToString();
if (left < right)
score4.Text = (left * 10).ToString();
score3.Text = (right * 10).ToString();
if (left > right)
{
lose1.Margin = new Thickness(60, 0, 0, 0);
lose2.Margin = new Thickness(60, 0, 0, 0);