2020-03-06 02:30 AM
Hello..
How to implement double click/double tap on STM32L4R9AI-EVAL board
2020-03-06 04:20 AM
On a particular widget? Or an entire screen? More details!
/Martin
2020-03-08 06:39 AM
Double click on entire screen?........
2020-03-11 10:51 PM
How to implement double click?i want the example code?Do you have any example code?
Thank you.....
2020-03-13 04:54 AM
Double "clicking" on something is pretty uncommon so we don't have an example :) But it should be easy to implement - Inherit from Button and create your own handleClickEvent() handler that registers itself as a timer-widget to receive ticks. Then just keep track of the threshhold that you want to use to register a "double click". Search this forum on how to use time aware widgets. I just something similar in another post.
Search for "registerTimerWidget".
/Martin