Is there a way to do idle time processing in WPF application equivalent to OnIdle event in MFC?
A late alternative answer (as a memo to myself):
System.Windows.Interop.ComponentDispatcher.ThreadIdle += (_, __) => { Debug.Print("Idle"); };