author | cavaliet |
Fri, 09 Oct 2009 11:33:35 +0200 | |
changeset 136 | 8b513df1b446 |
parent 135 | 84b3bf5ee3d2 |
child 140 | fc7c12f9da30 |
permissions | -rw-r--r-- |
55 | 1 |
using System; |
2 |
using System.Collections.Generic; |
|
3 |
using System.Linq; |
|
4 |
using System.Text; |
|
5 |
using System.Windows; |
|
6 |
using System.Windows.Controls; |
|
7 |
using System.Windows.Data; |
|
8 |
using System.Windows.Documents; |
|
9 |
using System.Windows.Media; |
|
10 |
using System.Windows.Media.Imaging; |
|
11 |
using System.Windows.Navigation; |
|
12 |
using System.Windows.Shapes; |
|
128
90c29e979ef4
Drag and drop of annotations from timeline, first step
cavaliet
parents:
55
diff
changeset
|
13 |
|
135
84b3bf5ee3d2
First step of drag and drop annotation from a timeline to an other player
cavaliet
parents:
130
diff
changeset
|
14 |
using FingersDance.Data; |
84b3bf5ee3d2
First step of drag and drop annotation from a timeline to an other player
cavaliet
parents:
130
diff
changeset
|
15 |
using FingersDance.ViewModels; |
128
90c29e979ef4
Drag and drop of annotations from timeline, first step
cavaliet
parents:
55
diff
changeset
|
16 |
using FingersDance.Views; |
55 | 17 |
|
18 |
namespace FingersDance.Views |
|
19 |
{ |
|
20 |
/// <summary> |
|
21 |
/// Interaction logic for TimelineView.xaml |
|
22 |
/// </summary> |
|
23 |
public partial class TimelineView : UserControl |
|
24 |
{ |
|
136
8b513df1b446
First step of deleting annotations from timeline by drag and drop
cavaliet
parents:
135
diff
changeset
|
25 |
|
8b513df1b446
First step of deleting annotations from timeline by drag and drop
cavaliet
parents:
135
diff
changeset
|
26 |
private Boolean hasDragCanceledHandler = false; |
8b513df1b446
First step of deleting annotations from timeline by drag and drop
cavaliet
parents:
135
diff
changeset
|
27 |
|
55 | 28 |
public TimelineView() |
29 |
{ |
|
30 |
InitializeComponent(); |
|
31 |
} |
|
128
90c29e979ef4
Drag and drop of annotations from timeline, first step
cavaliet
parents:
55
diff
changeset
|
32 |
|
136
8b513df1b446
First step of deleting annotations from timeline by drag and drop
cavaliet
parents:
135
diff
changeset
|
33 |
|
128
90c29e979ef4
Drag and drop of annotations from timeline, first step
cavaliet
parents:
55
diff
changeset
|
34 |
|
55 | 35 |
} |
36 |
} |