equal
deleted
inserted
replaced
4 using System.Text; |
4 using System.Text; |
5 using System.Windows; |
5 using System.Windows; |
6 using System.Windows.Controls; |
6 using System.Windows.Controls; |
7 using System.Windows.Data; |
7 using System.Windows.Data; |
8 using System.Windows.Documents; |
8 using System.Windows.Documents; |
9 using System.Windows.Input; |
|
10 using System.Windows.Media; |
9 using System.Windows.Media; |
11 using System.Windows.Media.Imaging; |
10 using System.Windows.Media.Imaging; |
12 using System.Windows.Navigation; |
11 using System.Windows.Navigation; |
13 using System.Windows.Shapes; |
12 using System.Windows.Shapes; |
|
13 |
|
14 using FingersDance.Data; |
|
15 using FingersDance.ViewModels; |
|
16 using FingersDance.Views; |
14 |
17 |
15 namespace FingersDance.Views |
18 namespace FingersDance.Views |
16 { |
19 { |
17 /// <summary> |
20 /// <summary> |
18 /// Interaction logic for TimelineView.xaml |
21 /// Interaction logic for TimelineView.xaml |
19 /// </summary> |
22 /// </summary> |
20 public partial class TimelineView : UserControl |
23 public partial class TimelineView : UserControl |
21 { |
24 { |
|
25 |
|
26 private Boolean hasDragCanceledHandler = false; |
|
27 |
22 public TimelineView() |
28 public TimelineView() |
23 { |
29 { |
24 InitializeComponent(); |
30 InitializeComponent(); |
25 } |
31 } |
|
32 |
|
33 |
|
34 |
26 } |
35 } |
27 } |
36 } |