protected static void OnPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
        {
            ViewportPolylineBase polyline = (ViewportPolylineBase)d;

            PointCollection currentPoints = (PointCollection)e.NewValue;

            polyline.UpdateUIRepresentation();
        }
示例#2
0
        private static void OnPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
        {
            ViewportPolylineBase polyline = (ViewportPolylineBase)d;

            polyline.UpdateUIRepresentation();
        }