equal
deleted
inserted
replaced
18 /// <summary> |
18 /// <summary> |
19 /// Interaction logic for TimelineAnnotationView.xaml |
19 /// Interaction logic for TimelineAnnotationView.xaml |
20 /// </summary> |
20 /// </summary> |
21 public partial class TimelineAnnotationView : UserControl |
21 public partial class TimelineAnnotationView : UserControl |
22 { |
22 { |
|
23 |
|
24 public static readonly DependencyProperty ScaleXProperty = DependencyProperty.Register("ScaleX", typeof(Double), typeof(TimelineAnnotationView)); |
|
25 |
23 public TimelineAnnotationView() |
26 public TimelineAnnotationView() |
24 { |
27 { |
25 InitializeComponent(); |
28 InitializeComponent(); |
|
29 } |
|
30 |
|
31 public Double ScaleX |
|
32 { |
|
33 get { return (Double)GetValue(ScaleXProperty); } |
|
34 set { SetValue(ScaleXProperty, value); } |
26 } |
35 } |
27 } |
36 } |
28 |
37 |
29 public class ThicknessSingleValueConverter : IValueConverter |
38 public class ThicknessSingleValueConverter : IValueConverter |
30 { |
39 { |