This question is locked. New answers and comments are not allowed.
Hi,
I do not quite understand the concept of how the RateReminder works. I added the creation of the reminder to InitializePhoneApplication():
RateReminder.RecurrencePerUsageCount = 5;
RateReminder.RecurrencePerTimePeriod = new TimeSpan(20, 0, 0, 0);
The goal is to show the reminder every 5 app starts or every 20 days (which ever comes first). Notify() is called when the MainPage is shown.The first 4 starts nothing happes, what is fine of course. On the 5th start the reminder is shown. But it shows up again each time the MainPage is activated. I thought that Notify() would notice on its own that it has been executed on this run and only show the reminder again when the app started the next 5 times. Do I have to handle "ReminderWasShownOnThisExecution" on my own?
How do I localize the Reminder? I read your documentation and the other post on this forum but I was not able to translate the dialog.
I use the AppResources.resx which was created automatically with the project. I added the following strings to the resx and added the ResourceManager to the Telerik controls:
Telerik.Windows.Controls.InputLocalizationManager.Instance.ResourceManager = AppResources.ResourceManager;
However this did not had any effect on the reminder...
I do not quite understand the concept of how the RateReminder works. I added the creation of the reminder to InitializePhoneApplication():
RateReminder.RecurrencePerUsageCount = 5;
RateReminder.RecurrencePerTimePeriod = new TimeSpan(20, 0, 0, 0);
The goal is to show the reminder every 5 app starts or every 20 days (which ever comes first). Notify() is called when the MainPage is shown.The first 4 starts nothing happes, what is fine of course. On the 5th start the reminder is shown. But it shows up again each time the MainPage is activated. I thought that Notify() would notice on its own that it has been executed on this run and only show the reminder again when the app started the next 5 times. Do I have to handle "ReminderWasShownOnThisExecution" on my own?
How do I localize the Reminder? I read your documentation and the other post on this forum but I was not able to translate the dialog.
I use the AppResources.resx which was created automatically with the project. I added the following strings to the resx and added the ResourceManager to the Telerik controls:
|
|||||
However this did not had any effect on the reminder...