| author | bastiena |
| Fri, 09 Mar 2012 14:52:11 +0100 | |
| changeset 0 | 6fefd4afe506 |
| permissions | -rw-r--r-- |
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; namespace Trakers.Tracking.Events { public class SwipeEventListener { /* * Méthode appelée lorsque on a l'événement : L'utilisateur a effectué un swipe. */ public void ShowOnScreen(object o, SwipeEventArgs e) { //On l'indique dans le debug. e.debug.showSwipe(); //e.debug.ExceptionLbl.Content = "SWIPE"; //On notifie le serveur TUIO. //e.server.LeftHandQuit(o, e); } } }