--- a/src/FingersDance.Views/TimelineAnnotationView.xaml.cs Sun Oct 25 12:38:45 2009 +0100
+++ b/src/FingersDance.Views/TimelineAnnotationView.xaml.cs Sun Oct 25 12:55:07 2009 +0100
@@ -20,10 +20,19 @@
/// </summary>
public partial class TimelineAnnotationView : UserControl
{
+
+ public static readonly DependencyProperty ScaleXProperty = DependencyProperty.Register("ScaleX", typeof(Double), typeof(TimelineAnnotationView));
+
public TimelineAnnotationView()
{
InitializeComponent();
}
+
+ public Double ScaleX
+ {
+ get { return (Double)GetValue(ScaleXProperty); }
+ set { SetValue(ScaleXProperty, value); }
+ }
}
public class ThicknessSingleValueConverter : IValueConverter