Skip to main content

How to make splash screen appear for longer Windows Phone 8

You can add Thread.Sleep code before loading the first page

 public MainPage()
        {
            Thread.Sleep(3000);     //3 Second Delay
            InitializeComponent();
        }

Because there is no Configuration area define in App.xaml for Splash Screen.

Comments