在我的应用程序中,当我移动我的 handRigth(kinect SDK)时,画布会移动,我需要创建一个方法(C#,Wpf),它允许我存储 Y 的坐标(100 个位置的数组列表)。本方法内容:
alLastCoor_HandRight.Add(dYpuntero); //ArrayList, dYpuntero=Position
if (alLastCoor_HandRight.Count > 100)// Limit ArrayList 100 positions
alLastCoor_HandRight.RemoveAt(0);
每次进入方法,存储100个Y画布位置。我怎样才能做到这一点 ??