Esempio n. 1
0
 public void buttonReleased(SquareTuioObject squareTui, SquareTUIButton button)
 {
     if (dispatcher.CheckAccess())
     {
         listener.buttonReleased(squareTui, button);
     }
     else
     {
         object[] e = new object[] { squareTui, button };
         dispatcher.Invoke(DispatcherPriority.DataBind, (SendOrPostCallback) delegate { buttonReleasedImpl(e); }, e);
     }
 }
Esempio n. 2
0
 public void buttonReleased(SquareTuioObject squareTui, SquareTUIButton button)
 {
     Console.WriteLine("button released " + squareTui.SymbolID + " " + squareTui.SessionID + " " + button);
 }