BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
calendar.OnMonthCellLoaded += Calendar_OnMonthCellLoaded; |
App.Current.MainPage = new NavigationPage(new MainPage()); |
calendar.Locale = new CultureInfo(language); |
The language is succesfully changed.
The cells load as wished when just starting the application or whenever I toggle a button and refresh the calendar. But whenever the language is changed (it doesn't matter if it's done on the calendar as well, so the problem is probably something with: App.Current.MainPage = new NavigationPage(new MainPage()); ), the OnMonthCellLoaded doesn't seem to apply on the displaying month, when I manually go 2 months further or back and then go back everything is displaying just fine. The calendar is on a tabview that is on the MainPage.
It's the same problem when I use:
await Navigation.PushModalAsync(new MainPage()); |
am I doing this wrong or is this a bug?
Regards,
Jens