For the Base Question:
On My project first time,i use SimpleTouchHandler ( NoOfHandler = 2) to persent the DialogPanel. But like the example project(WasherMachine_Change) some other widget trogger when 2-finger-slide.
I think it maybe is a grab cycle problem, for this Question answer:
A specific GUI use case - Ask Embedded Wizard (embedded-wizard.de)
At this Question, we Can change the SimpleTouchHandler TimeOut value to change interval time between the first-finger and second-finger.
like the way to change the interval time, I try to change SimpleTouchHanler detect time. I change the press value like below:
press = ( event1 != null ) && event1.Down && ( event1.HoldPeriod == 0 );
hold = ( event1 != null ) && event1.Down && ( event1.HoldPeriod > 0 );
timeout = ( event1 != null ) && event1.Down && ( event1.HoldPeriod > 50 );
release = ( event1 != null ) && !event1.Down;
drag = ( event2 != null );
But it's failed. Can we achieve this functin: SimpleTouchHanler detect time delay 50ms.