Category / Section
How to localize the scheduler element in .NET MAUI Scheduler (SfScheduler)?
1 min read
The MAUI Scheduler allows you to localize the calendar days and months in different languages for the specific cultures by using the CurrentUICulture property. The Scheduler default string can be localized by adding the Resource (.Resx) file with corresponding locale texts for calendar views.
XAML
<Grid> <scheduler:SfScheduler x:Name="Scheduler" AllowedViews="Day,Week,WorkWeek,TimelineDay,TimelineWeek,TimelineWorkWeek,TimelineMonth"/> </Grid>
App.Xaml.cs
using Syncfusion.Maui.Scheduler; using System.Globalization; using System.Resources; namespace Localization; public partial class App : Application { public App() { InitializeComponent(); CultureInfo.CurrentUICulture = new CultureInfo("fr-FR"); SfSchedulerResources.ResourceManager = new ResourceManager("Localization.Resources.SfScheduler", Application.Current.GetType().Assembly); MainPage = new MainPage(); } }