Das folgende Beispiel zeigt, wie man eine Datenschutzerklärung in den Einstellungen einer Windows 8-App als externen Link einbauen kann.
Code
public MainPage() { this.InitializeComponent(); SettingsPane.GetForCurrentView().CommandsRequested += CommandsRequested; } private void CommandsRequested(SettingsPane sender, SettingsPaneCommandsRequestedEventArgs args) { args.Request.ApplicationCommands.Add(new SettingsCommand("PrivacySetting", "Privacy Policy", (x) => { OpenPrivacyPolicy(); })); } public async static void OpenPrivacyPolicy() { var url = new Uri("http://www.domain.com/privacy.html"); await Windows.System.Launcher.LaunchUriAsync(url); } |