-2

How to check if the app is opened for the first time to make a welcome screen.

Alexei Levenkov
  • 98,904
  • 14
  • 127
  • 179
  • For UWP settings https://msdn.microsoft.com/en-us/library/windows/apps/windows.storage.applicationdata.localsettings.aspx, or fancy class from http://stackoverflow.com/questions/35470460/adding-settings-class-to-a-uwp-app – Alexei Levenkov Jun 21 '16 at 01:44

1 Answers1

1

You could use settings to store a boolean value, or write a small piece of data to a file to know if it has been opened before. Just check the data and viola, you have a first time running check.

Darkrifts
  • 211
  • 2
  • 11