This commit is contained in:
tanglong 2025-10-21 17:48:10 +08:00
parent 452ed85339
commit c55ef57048
2 changed files with 15 additions and 13 deletions

View File

@ -13,7 +13,7 @@ namespace Dto
public class GroupJumpRopeContext public class GroupJumpRopeContext
{ {
// 静态字段,保存排名列表 // 静态字段,保存排名列表
//public static List<RankItem> RankList { get; set; } = new List<RankItem>(); public static List<RankItem> RankList { get; set; } = new List<RankItem>();
public List<(double XNorm, double YNorm)> CirclePositions { get; private set; } public List<(double XNorm, double YNorm)> CirclePositions { get; private set; }
public List<SportUserItem> UserList { get; private set; } public List<SportUserItem> UserList { get; private set; }
public List<string> UserNumberList { get; private set; } public List<string> UserNumberList { get; private set; }
@ -59,6 +59,8 @@ namespace Dto
}) })
.ToList(); .ToList();
RankList = rankList;
return rankList; return rankList;
} }
} }

View File

@ -31,7 +31,7 @@ namespace Views.JumpRope
{ {
InitializeComponent(); InitializeComponent();
Loaded += UserControl_Loaded; Loaded += UserControl_Loaded;
_groupJumpRopeContext = new GroupJumpRopeContext(); //_groupJumpRopeContext = new GroupJumpRopeContext();
LoadData(); LoadData();
} }
@ -73,7 +73,7 @@ namespace Views.JumpRope
public void LoadData() public void LoadData()
{ {
ShowRankingBoard(_groupJumpRopeContext.UpdateRankList()); ShowRankingBoard(GroupJumpRopeContext.RankList);
} }
public void ShowRankingBoard(List<RankItem> list) public void ShowRankingBoard(List<RankItem> list)
{ {