author | cavaliet |
Wed, 14 Oct 2009 14:29:23 +0200 | |
changeset 145 | 42cf4dbc473b |
parent 140 | fc7c12f9da30 |
child 146 | dd8ed4d3beb6 |
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 |
|
55 | 26 |
public TimelineView() |
27 |
{ |
|
28 |
InitializeComponent(); |
|
29 |
} |
|
128
90c29e979ef4
Drag and drop of annotations from timeline, first step
cavaliet
parents:
55
diff
changeset
|
30 |
|
136
8b513df1b446
First step of deleting annotations from timeline by drag and drop
cavaliet
parents:
135
diff
changeset
|
31 |
|
128
90c29e979ef4
Drag and drop of annotations from timeline, first step
cavaliet
parents:
55
diff
changeset
|
32 |
|
55 | 33 |
} |
34 |
} |