src/FingersDance.Views/TimelineAnnotationView.xaml.cs
changeset 169 3a407c966e57
parent 167 206f07a8d887
--- 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