--- a/src/FingersDance.Views/TimelineAnnotationView.xaml.cs Wed Oct 21 16:28:49 2009 +0200
+++ b/src/FingersDance.Views/TimelineAnnotationView.xaml.cs Thu Oct 22 14:48:43 2009 +0200
@@ -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