author | sarias |
Thu, 17 Sep 2009 12:53:22 +0200 | |
changeset 73 | bda95242e600 |
parent 72 | f1ca0958c992 |
child 143 | 9f157d9c725b |
permissions | -rw-r--r-- |
61 | 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.SessionInput |
|
12 |
{ |
|
13 |
public partial class UserControlSessionInput |
|
14 |
{ |
|
73 | 15 |
public event EventHandler EH_SurfaceButtonSubmit_ContactDown; |
16 |
||
61 | 17 |
public UserControlSessionInput() |
18 |
{ |
|
19 |
this.InitializeComponent(); |
|
20 |
||
21 |
// Insert code required on object creation below this point. |
|
22 |
} |
|
72
f1ca0958c992
Travail sur le control List Video et comunication entre ListVideo et FingersDance
sarias
parents:
61
diff
changeset
|
23 |
|
73 | 24 |
private void SurfaceButtonSubmit_ContactDown(object sender, Microsoft.Surface.Presentation.ContactEventArgs e) |
72
f1ca0958c992
Travail sur le control List Video et comunication entre ListVideo et FingersDance
sarias
parents:
61
diff
changeset
|
25 |
{ |
73 | 26 |
if (EH_SurfaceButtonSubmit_ContactDown != null) |
27 |
EH_SurfaceButtonSubmit_ContactDown(this, new EventArgs()); |
|
72
f1ca0958c992
Travail sur le control List Video et comunication entre ListVideo et FingersDance
sarias
parents:
61
diff
changeset
|
28 |
} |
73 | 29 |
|
30 |
private void SurfaceButtonSubmit_Click(object sender, RoutedEventArgs e) |
|
31 |
{ |
|
32 |
if (EH_SurfaceButtonSubmit_ContactDown != null) |
|
33 |
EH_SurfaceButtonSubmit_ContactDown(this, new EventArgs()); |
|
34 |
} |
|
35 |
||
61 | 36 |
} |
37 |
} |