How do you get an Idle Message in a UserControl class in C# / Silverlight?
How do you get an Idle Message in a UserControl class in C# / Silverlight?
Back when I was programming in C++ and MFC there was an idle message for user intervace classes that one could overwrite and make use of. Is there something like that in C# and/or Silverlight?
Re: How do you get an Idle Message in a UserControl class in C# / Silverlight?
I don't think there is one built into Silverlight. You could set up a timer in your MainPage that resets when the user does something and logs them out or whatever after however long you want.