Example #1
0
 static LineGraph()
 {
     PointsProperty.OverrideMetadata(typeof(LineGraph), new PropertyMetadata(new PointCollection(), PointsPropertyChangedHandler));
 }
Example #2
0
 set => this.SetValue(PointsProperty, value);
Example #3
0
 set => SetValue(PointsProperty, value);
 get => (NotifyObjectCollection <PointVisualObject>)GetValue(PointsProperty); set => SetValue(PointsProperty, value);