Is there a way to close MessageBox after several seconds in Windows Mobile application (C# application)?
There are so many examples with SendKeys Class, but none of them works on Windows Mobile, and it creates an error:
The name ‘SendKeys’ does not exist in the current context
I have checked
http://msdn.microsoft.com/en-us/library/system.windows.forms.sendkeys.aspx
http://stackoverflow.com/questions/2519006/how-to-send-key-from-my-program-to-external-program-wince
etc.
Thank you in advance!
Ok, I solved it by adding Panel component (with Label message) that emulates Message box. So it can be set to invisible after few seconds by Timer component.
Also, I added one more action to it – it will be set as invisible if end user press it.