Esempio n. 1
0
 public void HideSplitIcon(Face face)
 {
     _splitButton.Visibility = Visibility.Hidden;
     _activeFace             = null;
 }
Esempio n. 2
0
 private void Animate(Face face, int toLeft, int toTop, double opacity, double duration)
 {
     face.Opacity = opacity;
     SetLeft(face, toLeft);
     SetTop(face, toTop);
 }
Esempio n. 3
0
 /// <summary>
 /// Add a face to my child list
 /// </summary>
 /// <param name="face">Face to add</param>
 public void AddFace(Face face)
 {
     Children.Add(face);
 }