My question seems a fairly simple one, but after hours of searching I found nothing that could solve my problem.
I am developing a calendar app and I need to keep it up to date so it would always show the current day correctly. The case I can't solve is when the user changes the system date manually.
I found this question and SystemEvent.TimeChanged would be the exact thing I am looking for. Sadly, it's not present in UWP. Is there a substitute of any kind for it?
I also stumbled upon the TimeZoneChange value of SystemTriggerType, but I tested it with the background task sample and it only works when the system time changes due to time zone change (as the documentation states). It's nice and it's close to my problem, but clearly not a sufficient solution.