Paint() 공개 메소드

public Paint ( bool recomputeView = false ) : void
recomputeView bool
리턴 void
예제 #1
0
 private void DeleteKey_Click(object sender, RoutedEventArgs e)
 {
     if (point.Previous != null)
     {
         graph.SelectedPoint = point.Previous.Value;
     }
     else if (point.Next != null)
     {
         graph.SelectedPoint = point.Next.Value;
     }
     graph.SelectedCurve.RemovePoint(point);
     graph.Paint();
 }