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
votes
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();
}