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.
public MainPage()
{
Thread.Sleep(3000); //3 Second Delay
InitializeComponent();
}
Because there is no Configuration area define in App.xaml for Splash Screen.
Comments
Post a Comment