author | PAMPHILE Jonathan <pamphile@efrei.fr> |
Tue, 13 Oct 2009 19:33:13 +0200 | |
changeset 143 | 9f157d9c725b |
parent 121 | 32611257e99f |
child 146 | dd8ed4d3beb6 |
permissions | -rw-r--r-- |
35 | 1 |
using System; |
2 |
using System.IO; |
|
3 |
using System.Net; |
|
4 |
using System.Windows; |
|
5 |
using System.Windows.Controls; |
|
6 |
using System.Windows.Data; |
|
7 |
using System.Windows.Media; |
|
8 |
using System.Windows.Media.Animation; |
|
9 |
using System.Windows.Navigation; |
|
143 | 10 |
using FingersDance.Data; |
35 | 11 |
|
12 |
namespace FingersDance.Control.UserPanel |
|
13 |
{ |
|
14 |
public partial class UserControlUserPanel |
|
15 |
{ |
|
143 | 16 |
// public int id = 0; |
17 |
Project _Project = new Project(); |
|
18 |
||
19 |
public Project Project |
|
20 |
{ |
|
21 |
get { return _Project; } |
|
22 |
set { _Project = value; } |
|
23 |
} |
|
24 |
||
35 | 25 |
public UserControlUserPanel() |
26 |
{ |
|
27 |
this.InitializeComponent(); |
|
28 |
||
29 |
// Insert code required on object creation below this point. |
|
30 |
} |
|
119 | 31 |
|
143 | 32 |
public UserControlUserPanel(Project p, string path) |
119 | 33 |
{ |
34 |
this.InitializeComponent(); |
|
143 | 35 |
_Project = p; |
121
32611257e99f
Link PLayer - SessionInput
PAMPHILE Jonathan <pamphile@efrei.fr>
parents:
119
diff
changeset
|
36 |
this.UserControlSyncSource.Load(path); |
119 | 37 |
} |
35 | 38 |
} |
39 |
} |