1

I am new to UWP C #. When I launch my UWP application, I have the Windows blue image.

How do I change or delete it? OS Windows 10 (1809) Visual Studio C #

jlalexie
  • 21
  • 3
  • do you mean the splash screen ? you can check this then : https://learn.microsoft.com/en-us/windows/uwp/launch-resume/add-a-splash-screen – Pratyay Dec 19 '19 at 06:28

2 Answers2

0

You're Referring to the Splash Screen

Here's the Official Doc on how to do it

https://learn.microsoft.com/en-us/windows/uwp/launch-resume/add-a-splash-screen

If you want to change the Starting Page for a UWP application

in the App.xaml.cs

Look for the line with:

rootFrame.Navigate(typeof(MainPage)

Just change MainPage to whatever page you want to start on.

Azurry
  • 491
  • 3
  • 16
0

Starting with Fall Creators Update (1709), the splash screen is optional. You can use the uap5:Optional attribute of the uap:SplashScreen element to disable the splash screen (assuming your app starts fast enough).

Peter Torr - MSFT
  • 11,824
  • 3
  • 18
  • 51