50 lines
1.3 KiB
C#
50 lines
1.3 KiB
C#
using System.Windows;
|
|
using System.Windows.Media;
|
|
|
|
namespace Microsoft.Research.DynamicDataDisplay.PointMarkers
|
|
{
|
|
/// <summary>Abstract class that extends PointMarker and contains
|
|
/// marker property as Pen, Brush and Size</summary>
|
|
public abstract class ShapePointMarker : PointMarker {
|
|
/// <summary>Size of marker in points</summary>
|
|
public double Size {
|
|
get { return (double)GetValue(SizeProperty); }
|
|
set { SetValue(SizeProperty, value); }
|
|
}
|
|
|
|
public static readonly DependencyProperty SizeProperty =
|
|
DependencyProperty.Register(
|
|
"Size",
|
|
typeof(double),
|
|
typeof(ShapePointMarker),
|
|
new FrameworkPropertyMetadata(5.0));
|
|
|
|
|
|
/// <summary>Pen to outline marker</summary>
|
|
public Pen Pen {
|
|
get { return (Pen)GetValue(PenProperty); }
|
|
set { SetValue(PenProperty, value); }
|
|
}
|
|
|
|
public static readonly DependencyProperty PenProperty =
|
|
DependencyProperty.Register(
|
|
"Pen",
|
|
typeof(Pen),
|
|
typeof(ShapePointMarker),
|
|
new FrameworkPropertyMetadata(null));
|
|
|
|
|
|
public Brush Fill {
|
|
get { return (Brush)GetValue(FillProperty); }
|
|
set { SetValue(FillProperty, value); }
|
|
}
|
|
public static readonly DependencyProperty FillProperty =
|
|
DependencyProperty.Register(
|
|
"Fill",
|
|
typeof(Brush),
|
|
typeof(ShapePointMarker),
|
|
new FrameworkPropertyMetadata(Brushes.Red)
|
|
);
|
|
}
|
|
}
|