Is it possible to execute a method after 30 second from background on click event(no regular event)? By "from background" I mean that UI is still working; there's no active waiting. I can't use System.Threading.Thread.Sleep(x)
and so on.
I tried Timer
Class, but I can't get it working how I want.