I have a requirement where if nothing has been changed on the window which is developed in wpf, the Continue button should be auto invoked after a specific time which will load next window.
Asked
Active
Viewed 53 times
0
-
First, detect if the user has been idle example: https://stackoverflow.com/questions/1037595/c-sharp-detect-time-of-last-user-interaction-with-the-os, then raise an event or Invoke a Command to load the next Window – iNCEPTiON_ Apr 27 '20 at 11:25
-
Why don't you use a timer? – mm8 Apr 27 '20 at 13:13