You can simply create a web page with the text of your private policy. That "Application Insertion Name does not collect any information about you" is sufficient. Once you have the URL, you can add the private "section" charms inside the settings:
SettingsCommand privacy = new SettingsCommand("privacy", "Privacy Policy", (uiCommand) => { ShowSettingsPanel(); }); args.Request.ApplicationCommands.Add(privacy);
Then in the ShowSettingsPanel function (for example) just open the browser:
Launcher.LaunchUriAsync(new Uri("http://colorchallenge.co.nf/privacy_policy.html"));
Remember that you need to tell the program what you want to add to the settings section. To do this, if MyApp_CommandsRequested is the name of the function in which you have the code at the beginning, you should do this:
SettingsPane.GetForCurrentView().CommandsRequested += MyApp_CommandsRequested;
source share