问题
I need to show a "welcome screen" (something like a license) when the user had first launched the application. This screen should be shown only once per user. Could someone guide me with this since I'm a beginner in windows development?
回答1:
You can use local storage or settings to store data on whether the "welcome screen" has been shown or not and use that to determine if the screen has to be shown on startup.
回答2:
I don't know if there is something like LicenceInfo().
But for sure you can do it with IsolatedStorageSettings:
http://msdn.microsoft.com/en-us/library/windowsphone/develop/jj714090(v=vs.105).aspx
来源:https://stackoverflow.com/questions/19838126/windows-store-apps-detect-first-launch-of-the-app