diff -r d70ee2002f75 -r 3a407c966e57 src/FingersDance.Views/TimelineAnnotationView.xaml.cs --- 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 @@ /// 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