equal
deleted
inserted
replaced
10 |
10 |
11 namespace FingersDance.Control.ListVideo |
11 namespace FingersDance.Control.ListVideo |
12 { |
12 { |
13 public partial class UserControlListVideo |
13 public partial class UserControlListVideo |
14 { |
14 { |
15 |
15 //Creation d'un Event pour Chaque Item Video |
16 public event EventHandler EH_ItemVideo1_ContactDown; |
16 public event EventHandler EH_ItemVideo1_ContactDown; |
17 public event EventHandler EH_ItemVideo2_ContactDown; |
17 public event EventHandler EH_ItemVideo2_ContactDown; |
18 |
18 |
19 public UserControlListVideo() |
19 public UserControlListVideo() |
20 { |
20 { |
33 { |
33 { |
34 if (EH_ItemVideo2_ContactDown != null) |
34 if (EH_ItemVideo2_ContactDown != null) |
35 EH_ItemVideo2_ContactDown(this, new EventArgs()); |
35 EH_ItemVideo2_ContactDown(this, new EventArgs()); |
36 } |
36 } |
37 |
37 |
38 private void ItemVideo1_Selected(object sender, RoutedEventArgs e) |
38 //Event appelé lors de la selection d'un Item dans la Video List |
39 { |
|
40 |
|
41 } |
|
42 |
|
43 private void ItemVideo1_ContactTapGesture(object sender, Microsoft.Surface.Presentation.ContactEventArgs e) |
39 private void ItemVideo1_ContactTapGesture(object sender, Microsoft.Surface.Presentation.ContactEventArgs e) |
44 { |
40 { |
45 if (EH_ItemVideo1_ContactDown != null) |
41 if (EH_ItemVideo1_ContactDown != null) |
46 EH_ItemVideo1_ContactDown(this, new EventArgs()); |
42 EH_ItemVideo1_ContactDown(this, new EventArgs()); |
47 } |
43 } |