--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/FingersDance.Control.SessionInput/UserControlListSession.xaml.cs Wed Oct 14 13:45:55 2009 +0200
@@ -0,0 +1,63 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Windows;
+using System.Windows.Controls;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Input;
+using System.Windows.Media;
+using System.Windows.Media.Imaging;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using FingersDance.Data;
+using FingersDance.Control;
+
+namespace FingersDance.Control.SessionInput
+{
+ /// <summary>
+ /// Interaction logic for UserControlListSession.xaml
+ /// </summary>
+ public partial class UserControlListSession
+ {
+ //Creation d'un Event pour Chaque Item Video
+ public event EventHandler EH_List_ContactDown;
+ public string SelectedItem = "";
+
+ public UserControlListSession(List<Session> sessions)
+ {
+ InitializeComponent();
+ OpenSessions(sessions);
+ }
+
+ private void OpenSessions(List<Session> sessions)
+ {
+ CustomListBoxItem Contener = new CustomListBoxItem();
+ Contener.Name = "New Session";
+ Label l = new Label();
+ l.Content = "New Session";
+ Contener.Content = l;
+ stackPanel.Children.Add(Contener);
+ Contener.ContactTapGesture += Item_ContactTapGesture;
+ foreach (Session elt in sessions)
+ {
+ Contener = new CustomListBoxItem();
+ Contener.Name = elt.Name;
+ l = new Label();
+ l.Content = elt.Name;
+ Contener.Content = l;
+ stackPanel.Children.Add(Contener);
+ Contener.ContactTapGesture += Item_ContactTapGesture;
+ }
+ }
+
+ //Event appelé lors de la selection d'un Item dans la Liste
+ private void Item_ContactTapGesture(object sender, Microsoft.Surface.Presentation.ContactEventArgs e)
+ {
+ SelectedItem = ((CustomListBoxItem)sender).Name;
+ if (EH_List_ContactDown != null)
+ EH_List_ContactDown(this, new EventArgs());
+ }
+ }
+}