示例#1
0
        private void PopulateOtherFaces()
        {
            var otherFaces = Context.DetectedFaces.Where(f => f.FaceOwner.Id == Person.Id && f.HumanVerified == false).ToList();

            foreach (var face in otherFaces)
            {
                var faceIcon = new FaceIcon(face);
                faceIcon.OnDragStarted += FaceIcon_OnDragStarted;
                OtherFaces.Children.Clear();
                OtherFaces.Children.Add(faceIcon);
            }
        }
示例#2
0
 private void FaceIcon_OnDragStarted(FaceIcon ths)
 {
     PopulateOtherFaces();
     PopulateVerifiedFaces();
 }