by badwolf » Sat Jul 11, 2009 10:32 pm
I am currently trying to create an application with a splash screen. After the layout for the splash screen is loaded I would like to pause for a couple of seconds then continue to the main menu. The issue I am having is that after I load the splash screen layout I use Thread.sleep but the the splash screen is never actually drawn presumably because it never has time to draw before Thread.sleep is called. Is there a way to force draw the view before calling Thread.sleep or perhaps a function I can call during iterations in a timer loop? If you are familiar with DoEvents in VB it would be similar. Thanks!