author | PAMPHILE Jonathan <pamphile@efrei.fr> |
Fri, 25 Sep 2009 02:56:57 +0200 | |
changeset 121 | 32611257e99f |
parent 119 | 7a370bfb4d77 |
child 131 | 9331c3dea175 |
child 143 | 9f157d9c725b |
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; |
|
10 |
||
11 |
namespace FingersDance.Control.UserPanel |
|
12 |
{ |
|
13 |
public partial class UserControlUserPanel |
|
14 |
{ |
|
15 |
public UserControlUserPanel() |
|
16 |
{ |
|
17 |
this.InitializeComponent(); |
|
18 |
||
19 |
// Insert code required on object creation below this point. |
|
20 |
} |
|
119 | 21 |
|
22 |
public UserControlUserPanel(string path) |
|
23 |
{ |
|
24 |
this.InitializeComponent(); |
|
25 |
||
121
32611257e99f
Link PLayer - SessionInput
PAMPHILE Jonathan <pamphile@efrei.fr>
parents:
119
diff
changeset
|
26 |
this.UserControlSyncSource.Load(path); |
119 | 27 |
// Insert code required on object creation below this point. |
28 |
} |
|
35 | 29 |
} |
30 |
} |