1
votes

Can anyone suggest me some good ways to add In-App Feedback mechanism for users, such as contact information(via email/or website)? Please answer simple and in easy way, as I am new to development Thanks.

1
you can do it two ways 1. Create a form in xaml and submit that to a service from that you write code to send mail to ur support.2. Create a responsive web page to send mail and load it using webview in xaml. - arun

1 Answers

1
votes

Add this reference http://aka.ms/store-em-sdk Check

if (Microsoft.Services.Store.Engagement.Feedback.IsSupported)
{
 this.feedbackButton.Visibility = Visibility.Visible;
}

and then call this method private async void feedbackButton_Click(object sender, RoutedEventArgs e) { await Microsoft.Services.Store.Engagement.Feedback.LaunchFeedbackAsync(); }