I found out this nice addon by nokia, https://github.com/nokia-developer/rate-my-app
I followed their guide to implement it in my app, that can be downloaded here https://github.com/nokia-developer/rate-my-app/blob/master/Doc/RateMyAppGuide.pdf?raw=true
Nothing difficult in that guide, by the way, I just needed to install an addon into my project and to add 2 lines of code,
xmlns:rma="clr-namespace:RateMyApp.Controls;assembly=RateMyApp"
and
<rma:FeedbackOverlay x:Name="FeedbackOverlay" Grid.RowSpan="2" FeedbackTo="me@test.com" ApplicationName="MyApp" CompanyName="MyCompany"/>
I actually did everything not encountering any issue at all. As I tried to edit the XAML code of the rma:FeedbackOverlay object, the "GUI" window (the one near the XAML project) throw this exception:
InvalidOperationException: The property "FeedbackOverlay.Message" does not expose a get method.
InnerException: None
(there is also a StackTrace that I am not able to read, but I can provide it if anyone can read that for me)
I tried deploying the app on my device, and it actually runs fine, making the extension work as it is meant to. Yet, I am worried about that exception. Do I have reason to be? How may I solve that? Thanks in advance!
(yeah, I tried rebooting pc, restarting IDE, nothing worked)