I wanna do a very simple thing using Expression Blend (SketchFlow).
I want to have a button in a screen that when it's pressed for more than 3 seconds it should go to another screen.
I thought about using this (green answer): Button Long Click
within the MouseLeftButtonDown but I don't know how to change to another screen using c# code...just by setting the "Navigate to" option.
So if anyone could tell me how to set a long click behavior in a button so it changes to a new screen it would be great.
Here is a similar but simpler class you can use:
With this, you can use any of the standard behaviors in Blend along with the new LongClick event. Set the HowLong property to the number of ms you want (default is 3000) and then use an eventtrigger set to LongClick to trigger your navigation: